RaidSchema constructor
RaidSchema({
- required String code,
- required String name,
- String? description,
- required String monster,
- required RaidScheduleSchema schedule,
- RaidRewardsSchema? rewards,
- required RaidStatus status,
- required DateTime nextStartAt,
- int participantCount = 0,
- RaidInstanceSchema? activeInstance,
- RaidInstanceSchema? latestInstance,
Returns a new RaidSchema instance.
Implementation
RaidSchema({
required this.code,
required this.name,
this.description,
required this.monster,
required this.schedule,
this.rewards,
required this.status,
required this.nextStartAt,
this.participantCount = 0,
this.activeInstance,
this.latestInstance,
});