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