timeZoneWithName_ static method

NSTimeZone? timeZoneWithName_(
  1. ThermionDartTexture1 _lib,
  2. NSString tzName
)

Implementation

static NSTimeZone? timeZoneWithName_(
    ThermionDartTexture1 _lib, NSString tzName) {
  final _ret = _lib._objc_msgSend_38(
      _lib._class_NSTimeZone1, _lib._sel_timeZoneWithName_1, tzName._id);
  return _ret.address == 0
      ? null
      : NSTimeZone._(_ret, _lib, retain: true, release: true);
}