TimeRange constructor

TimeRange({
  1. DateTime? fromInclusive,
  2. DateTime? toExclusive,
})

Implementation

TimeRange({
  this.fromInclusive,
  this.toExclusive,
});