SeasonSchema constructor
SeasonSchema({
- String? name,
- int? number,
- DateTime? startDate,
- List<
StatusSeasonRewardSchema> rewards = const [],
Returns a new SeasonSchema instance.
Implementation
SeasonSchema({
this.name,
this.number,
this.startDate,
this.rewards = const [],
});