initWithName_ method

NSTimeZone? initWithName_(
  1. NSString tzName
)

initWithName:

Implementation

NSTimeZone? initWithName_(objc.NSString tzName) {
  final _ret =
      _objc_msgSend_21(this.pointer, _sel_initWithName_, tzName.pointer);
  return _ret.address == 0
      ? null
      : NSTimeZone.castFromPointer(_ret, retain: true, release: true);
}