getValue method

int? getValue(
  1. DateTime date
)

Get the value of a single date, null if unset.

Implementation

int? getValue(DateTime date) {
  assert(_state != null, 'controller is not attached to any calendar');

  return _state!.values[date];
}