startDateTime property

DateTime startDateTime

Implementation

DateTime get startDateTime => _startDateTime;
void startDateTime=(DateTime value)

Implementation

set startDateTime(DateTime value) {
  if (value.isAtSameMomentAs(_startDateTime)) return;

  _startDateTime = value;
  parentData!.startDateTime = _startDateTime;
  markParentNeedsLayout();
}