Time constructor

const Time({
  1. String? text,
  2. String? timeZone,
  3. DateTime? value,
})

Implementation

const Time({
  this.text,
  this.timeZone,
  this.value,
});