AndroidEventSettings constructor

const AndroidEventSettings({
  1. List<String>? attendees,
  2. int? calendarId,
  3. int eventStatus = 1,
  4. int visibility = 0,
  5. bool hasAlarm = true,
  6. List<int>? reminderMinutes = const [15],
  7. int? eventColor,
  8. bool guestsCanModify = false,
  9. bool guestsCanInviteOthers = false,
  10. bool guestsCanSeeGuests = true,
})

Implementation

const AndroidEventSettings({
  this.attendees,
  this.calendarId,
  this.eventStatus = 1, // confirmed by default
  this.visibility = 0, // default visibility
  this.hasAlarm = true,
  this.reminderMinutes = const [15], // 15 minutes before by default
  this.eventColor,
  this.guestsCanModify = false,
  this.guestsCanInviteOthers = false,
  this.guestsCanSeeGuests = true,
});