timezoneId property

String get timezoneId

Get the ID of the timezone

It is in the format "Continent/City_Name". Examples: Europe/Paris, America/New_York, Europe/Moscow

Implementation

String get timezoneId {
  final OperationResult resultString = objectMethod(
    pointerId,
    'TimezoneResult',
    'timezoneId',
  );
  return resultString['result'];
}