allocWithZone_ static method

NSTimeZone allocWithZone_(
  1. Pointer<_NSZone> zone
)

allocWithZone:

Implementation

static NSTimeZone allocWithZone_(ffi.Pointer<_NSZone> zone) {
  final _ret = _objc_msgSend_24(_class_NSTimeZone, _sel_allocWithZone_, zone);
  return NSTimeZone.castFromPointer(_ret, retain: false, release: true);
}