SerializableCurrentInstant constructor

const SerializableCurrentInstant({
  1. int? estimatedErrorMillis,
  2. int? instantMillis,
})

Creates a new SerializableCurrentInstant instance.

Both estimatedErrorMillis and instantMillis are optional and may be null if the respective data is unavailable.

Implementation

const SerializableCurrentInstant({
  this.estimatedErrorMillis,
  this.instantMillis,
});