toMap method
Implementation
Map<String, dynamic> toMap() {
return {
'attendees': attendees,
'calendarId': calendarId,
'eventStatus': eventStatus,
'visibility': visibility,
'hasAlarm': hasAlarm,
'reminderMinutes': reminderMinutes,
'eventColor': eventColor,
'guestsCanModify': guestsCanModify,
'guestsCanInviteOthers': guestsCanInviteOthers,
'guestsCanSeeGuests': guestsCanSeeGuests,
};
}