Query$getLeaguePagination$getLeaguePagination$objects$country.fromJson constructor

Query$getLeaguePagination$getLeaguePagination$objects$country.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Query$getLeaguePagination$getLeaguePagination$objects$country.fromJson(
    Map<String, dynamic> json) {
  final l$id = json['id'];
  final l$name = json['name'];
  final l$code = json['code'];
  final l$flag = json['flag'];
  final l$$__typename = json['__typename'];
  return Query$getLeaguePagination$getLeaguePagination$objects$country(
    id: (l$id as String?),
    name: (l$name as String?),
    code: (l$code as String?),
    flag: (l$flag as String?),
    $__typename: (l$$__typename as String),
  );
}