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