firstDateTime property

DateTime firstDateTime

Implementation

DateTime get firstDateTime => _firstDateTime;
void firstDateTime=(DateTime value)

Implementation

set firstDateTime(DateTime value) {
  if (value == _firstDateTime) return;

  _firstDateTime = value;
  markNeedsLayout();
}