$TimeOfDay constructor

$TimeOfDay({
  1. int? hours,
  2. int? minutes,
  3. int? nanos,
  4. int? seconds,
})

Implementation

$TimeOfDay({
  this.hours,
  this.minutes,
  this.nanos,
  this.seconds,
});