getNotes method
Maps the custom appointments notes to the Appointment.
Allows to set the custom appointments corresponding property to the Appointment's notes property.
Note: It is applicable only when the custom appointments set to the appointments.
See also:
- Appointment.notes, which stored some note of the appointment in the calendar.
- getLocation, which maps the custom appointment's Appointment.location property to the Appointment
@override
DateTime getNotes(int index) {
return appointments![index].notes;
}
Implementation
String? getNotes(int index) => null;