TimeChange.withOffsetAndTime constructor

TimeChange.withOffsetAndTime(
  1. TimeSpan offset,
  2. Time time
)
Initializes a new instance of the The offset since the beginning of the year when the change occurs. The time at which the change occurs.

Implementation

TimeChange.withOffsetAndTime(TimeSpan offset, misc.Time time) : super() {
  this._offset = offset;
  this._time = time;
}