IEvent constructor
IEvent({
- IOrganizer? organizer,
- String? uid,
- IEventStatus status = IEventStatus.CONFIRMED,
- required DateTime start,
- DateTime? end,
- Duration? duration,
- String? summary,
- String? description,
- List<
String> ? categories, - String? url,
- IClass classification = IClass.PRIVATE,
- String? comment,
- IRecurrenceRule? rrule,
- ITimeTransparency? transparency,
- String? location,
- double? lat,
- double? lng,
- List<
String> ? resources, - IAlarm? alarm,
- int? priority = 0,
Implementation
IEvent({
IOrganizer? organizer,
String? uid,
this.status = IEventStatus.CONFIRMED,
required this.start,
this.end,
this.duration,
String? summary,
String? description,
List<String>? categories,
String? url,
IClass classification = IClass.PRIVATE,
String? comment,
IRecurrenceRule? rrule,
this.transparency,
this.location,
this.lat,
this.lng,
this.resources,
this.alarm,
this.priority = 0,
}) : super(
organizer: organizer,
uid: uid,
summary: summary,
description: description,
categories: categories,
url: url,
classification: classification,
comment: comment,
rrule: rrule,
);