initWithName_ method

NSTimeZone? initWithName_(
  1. NSString tzName
)

Implementation

NSTimeZone? initWithName_(NSString tzName) {
  final _ret =
      _lib._objc_msgSend_38(_id, _lib._sel_initWithName_1, tzName._id);
  return _ret.address == 0
      ? null
      : NSTimeZone._(_ret, _lib, retain: true, release: true);
}