TimeInterval constructor

TimeInterval({
  1. DateTime? end,
  2. String? kind,
  3. DateTime? start,
})

Implementation

TimeInterval({
  this.end,
  this.kind,
  this.start,
});