state property

CalendarState? get state

Implementation

CalendarState? get state => _model.value;
  1. @Input()
set state (CalendarState? state)

An object describing the entire state of the calendar -- what's selected on the calendar, and whether or not the selection is currently "active".

Implementation

@Input()
set state(CalendarState? state) {
  _model.value = state;
  if (_calendarStream == null) _onCalendarChange(state);
}