Interval constructor

Interval({
  1. String? endTime,
  2. String? startTime,
})

Implementation

Interval({
  this.endTime,
  this.startTime,
});