allocWithZone static method

NSDate allocWithZone(
  1. Pointer<NSZone> zone
)
override

allocWithZone:

Implementation

static NSDate allocWithZone(ffi.Pointer<NSZone> zone) {
  final _ret = _objc_msgSend_1cwp428(
    _class_NSDate,
    _sel_allocWithZone_,
    zone,
  );
  return NSDate.castFromPointer(_ret, retain: false, release: true);
}