dstOffset property

Duration get dstOffset

The offset daylight saving time (DST) offset.

Returns Duration.zero if no DST available.

Implementation

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