class Badge { String? text; Badge({ this.text, }); factory Badge.fromJson(Map json) => Badge( text: json['text'] as String?, ); }