class Meta { int? size; Meta({this.size}); factory Meta.fromJson(Map json) => Meta( size: json['size'] as int?, ); }