TimeZoneTransitionGroup.withId constructor

TimeZoneTransitionGroup.withId(
  1. TimeZoneDefinition timeZoneDefinition,
  2. String id
)
Initializes a new instance of the The time zone definition. The Id of the new transition group.

Implementation

TimeZoneTransitionGroup.withId(
    TimeZoneDefinition timeZoneDefinition, String id)
    : super() {
  this.timeZoneDefinition = timeZoneDefinition;
  this.id = id;
}