Time constructor

const Time({
  1. required int value,
  2. required int tzOffset,
  3. required String text,
})

Implementation

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