timeZone property

String timeZone

The time zone information associated with the time reference.

Implementation

String get timeZone {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TimeReference_getTimeZone(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}