TimeZoneComponent constructor
const
TimeZoneComponent({
- required TimeZoneIdentifierProperty timeZoneIdentifier,
- LastModifiedProperty? lastModified,
- TimeZoneUrlProperty? timeZoneUrl,
- List<
StandardTimeZoneComponent> ? standardTimeZones, - List<
DaylightTimeZoneComponent> ? daylightTimeZones,
Implementation
const TimeZoneComponent({
required this.timeZoneIdentifier,
this.lastModified,
this.timeZoneUrl,
this.standardTimeZones,
this.daylightTimeZones,
}) : assert(
standardTimeZones != null || daylightTimeZones != null,
"one of standardTimeZones or daylightTimeZones MUST occur",
),
super("VTIMEZONE");