EventSchema constructor
const
EventSchema({
- required String name,
- required String startDate,
- String? endDate,
- String? description,
- String? image,
- String? url,
- EventLocation? location,
- EventOrganizer? organizer,
- List<
EventPerformer> ? performers, - EventOffer? offer,
- EventStatus? eventStatus,
- EventAttendanceMode? eventAttendanceMode,
- String? previousStartDate,
Implementation
const EventSchema({
required this.name,
required this.startDate,
this.endDate,
this.description,
this.image,
this.url,
this.location,
this.organizer,
this.performers,
this.offer,
this.eventStatus,
this.eventAttendanceMode,
this.previousStartDate,
});