Timestamp class

A Timestamp represents a point in time independent of any time zone or local calendar, encoded as a count of seconds and fractions of seconds at nanosecond resolution.

The count is relative to an epoch at UTC midnight on January 1, 1970, in the proleptic Gregorian calendar which extends the Gregorian calendar backwards to year one. All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap second table is needed for interpretation, using a [24-hour linear smear](https://developers.google.com/time/smear). The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By restricting to that range, we ensure that we can convert to and from RFC 3339 date strings.

Constructors

Timestamp({int? nanos, String? seconds})
Timestamp.fromJson(Map _json)

Properties

hashCode int
The hash code for this object.
no setterinherited
nanos int?
Non-negative fractions of a second at nanosecond resolution.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
seconds String?
Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited