Timestamp constructor

Timestamp(
  1. int seconds,
  2. int nanoseconds
)

Creates a Timestamp

Implementation

Timestamp(this.seconds, this.nanoseconds) {
  _check(nanoseconds.abs() < BILLION, nanoseconds, 'nanoseconds');
}