factory Size.fromJson(Map<String, dynamic> json) { return Size(width: json['width'] as int, height: json['height'] as int); }