Input$GetFixturesFromProviderInput constructor

Input$GetFixturesFromProviderInput({
  1. required int season,
  2. int? league,
  3. int? team,
  4. String? round,
  5. DateTime? to,
  6. DateTime? from,
})

Implementation

factory Input$GetFixturesFromProviderInput({
  required int season,
  int? league,
  int? team,
  String? round,
  DateTime? to,
  DateTime? from,
}) =>
    Input$GetFixturesFromProviderInput._({
      r'season': season,
      if (league != null) r'league': league,
      if (team != null) r'team': team,
      if (round != null) r'round': round,
      if (to != null) r'to': to,
      if (from != null) r'from': from,
    });