class Fallback { String? id; int? type; Fallback({ this.id, this.type, }); factory Fallback.fromJson(Map json) => Fallback( id: json['id'], type: json['type'], ); Map toJson() => { 'id': id, 'type': type, }; }