Input$GetFixturesFromProviderInput constructor
Input$GetFixturesFromProviderInput({})
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,
});