onStartDateTimeUpdated property

(void Function(DateTime)?) onStartDateTimeUpdated

Implementation

void Function(DateTime)? get onStartDateTimeUpdated =>
    _onStartDateTimeUpdated;
void onStartDateTimeUpdated=(void value(DateTime)?)

Implementation

set onStartDateTimeUpdated(void Function(DateTime)? value) {
  if (value == _onStartDateTimeUpdated) return;

  _onStartDateTimeUpdated = value;
}