Clock constructor

Clock({
  1. int? contents,
  2. double? biasNanos,
  3. double? biasUncertaintyNanos,
  4. double? driftNanosPerSecond,
  5. double? driftUncertaintyNanosPerSecond,
  6. int? fullBiasNanos,
  7. int? hardwareClockDiscontinuityCount,
  8. int? leapSecond,
  9. int? timeNanos,
  10. double? timeUncertaintyNanos,
})

Implementation

Clock({
  this.contents,
  this.biasNanos,
  this.biasUncertaintyNanos,
  this.driftNanosPerSecond,
  this.driftUncertaintyNanosPerSecond,
  this.fullBiasNanos,
  this.hardwareClockDiscontinuityCount,
  this.leapSecond,
  this.timeNanos,
  this.timeUncertaintyNanos,
});