appointments property

List? appointments
getter/setter pair

Tha collection of appointments to be rendered on SfCalendar.

Defaults to null.

See also:


class _AppointmentDataSource extends CalendarDataSource {
 _AppointmentDataSource(List<Appointment> source) {
   appointments = source;
 }
}

Implementation

List<dynamic>? appointments;