TimeOfDay constructor

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

Implementation

TimeOfDay({
  this.hours = 0,
  this.minutes = 0,
  this.seconds = 0,
  this.nanos = 0,
}) : super(fullyQualifiedName);