Input$LeagueFilterInput constructor

Input$LeagueFilterInput({
  1. List<int>? id,
  2. List<int>? team,
  3. List<int>? season,
  4. List<String>? name,
  5. List<String>? code,
  6. List<String>? country,
  7. bool? current,
  8. List<Enum$LeagueTypeEnum>? type,
})

Implementation

factory Input$LeagueFilterInput({
  List<int>? id,
  List<int>? team,
  List<int>? season,
  List<String>? name,
  List<String>? code,
  List<String>? country,
  bool? current,
  List<Enum$LeagueTypeEnum>? type,
}) =>
    Input$LeagueFilterInput._({
      if (id != null) r'id': id,
      if (team != null) r'team': team,
      if (season != null) r'season': season,
      if (name != null) r'name': name,
      if (code != null) r'code': code,
      if (country != null) r'country': country,
      if (current != null) r'current': current,
      if (type != null) r'type': type,
    });