start property

Instant get start

Gets the start instant - the inclusive lower bound of the interval.

This will never be later than end, though it may be equal to it.

  • StateError: The interval extends to the start of time.

Implementation

Instant get start {
  Preconditions.checkState(
      _start.isValid, 'Interval extends to start of time');
  return _start;
}