timeZone property

String timeZone

Implementation

String get timeZone => _getAttribute<String>(kTimeZone, '');
void timeZone=(String? x)

pass null to remove key from attributes

Implementation

set timeZone(String? x) =>
    (x == null) ? _attributes.remove(kTimeZone) : _attributes[kTimeZone] = x;