UtcOffset constructor

UtcOffset({
  1. int? seconds,
  2. int? milliseconds,
  3. int? ticks,
  4. int? nanoseconds,
})

Implementation

UtcOffset({
  this.seconds,
  this.milliseconds,
  this.ticks,
  this.nanoseconds,
});