Timestamp constructor

Timestamp(
  1. int _seconds,
  2. int _nanoseconds
)

Creates a Timestamp

Implementation

Timestamp(this._seconds, this._nanoseconds) {
  _validateRange(_seconds, _nanoseconds);
}