updateValues method

void updateValues(
  1. Map<DateTime, int?> others
)

Implementation

void updateValues(Map<DateTime, int?> others) {
  assert(_state != null, 'controller is not attached to any calendar');
  assert(others.isNotEmpty, 'others cannot be empty');

  _state!.updateValues(others);
}