getCachedZoneOrNull method

DateTimeZone? getCachedZoneOrNull(
  1. String id
)

Implementation

DateTimeZone? getCachedZoneOrNull(String id) {
  Preconditions.checkNotNull(id, 'id');
  return _getCachedZoneFromSourceOrNull(id) ?? FixedDateTimeZone.getFixedZoneOrNull(id);
}