Query$getPredictions$getPredictions$teams$away$league$biggest$streak.fromJson constructor
Query$getPredictions$getPredictions$teams$away$league$biggest$streak.fromJson()
Implementation
factory Query$getPredictions$getPredictions$teams$away$league$biggest$streak.fromJson(
Map<String, dynamic> json) {
final l$wins = json['wins'];
final l$draws = json['draws'];
final l$loses = json['loses'];
final l$$__typename = json['__typename'];
return Query$getPredictions$getPredictions$teams$away$league$biggest$streak(
wins: (l$wins as num?)?.toDouble(),
draws: (l$draws as num?)?.toDouble(),
loses: (l$loses as num?)?.toDouble(),
$__typename: (l$$__typename as String),
);
}