Duration constructor

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

Implementation

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