start property

dynamic start

The current selected start value.

It can be either double or DateTime.

Implementation

dynamic get start => _start;
void start=(dynamic value)

Implementation

set start(dynamic value) {
  assert(value != null);
  _previousStart = start;
  if (_start == value) {
    return;
  }
  _start = value;
  if (value != null) {
    notifyListeners();
  }
}