timeZoneWithName_ static method

NSTimeZone? timeZoneWithName_(
  1. NSString tzName
)

timeZoneWithName:

Implementation

static NSTimeZone? timeZoneWithName_(objc.NSString tzName) {
  final _ret = _objc_msgSend_21(
      _class_NSTimeZone, _sel_timeZoneWithName_, tzName.pointer);
  return _ret.address == 0
      ? null
      : NSTimeZone.castFromPointer(_ret, retain: true, release: true);
}