Timestamp constructor

Timestamp({
  1. int? nanos,
  2. String? seconds,
})

Implementation

Timestamp({
  this.nanos,
  this.seconds,
});