TomlTimeZoneOffset.utc constructor

TomlTimeZoneOffset.utc()

Creates the time-zone offset of the UTC time-zone.

Implementation

factory TomlTimeZoneOffset.utc() => TomlTimeZoneOffset._(
      isUtc: true,
      isNegative: false,
      hours: 0,
      minutes: 0,
    );