offset property

Duration get offset

Get the offset including DST

Can be negative

Implementation

Duration get offset {
  final OperationResult resultString = objectMethod(
    pointerId,
    'TimezoneResult',
    'offset',
  );
  return Duration(seconds: resultString['result']);
}