class ContainerSize { double? height; double? width; ContainerSize({this.height, this.width}); factory ContainerSize.fromJson(Map json) => ContainerSize( height: (json['height'] as num?)?.toDouble(), width: (json['width'] as num?)?.toDouble(), ); Map toJson() => { 'height': height, 'width': width, }; }