timeZoneWithAbbreviation_ static method

NSTimeZone? timeZoneWithAbbreviation_(
  1. NSString abbreviation
)

timeZoneWithAbbreviation:

Implementation

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