resources property

List<CalendarResource>? resources
getter/setter pair

The collection of resource to be displayed in the timeline views of SfCalendar.

Defaults to null.

See also:


class AppointmentDataSource extends CalendarDataSourceResource {
   AppointmentDataSource(List<Appointment> appointments,
                                List<CalendarResource> resources) {
   resources = resources;
   appointments = appointments;
 }
}

Implementation

List<CalendarResource>? resources;