allocWithZone static method

UIWindow allocWithZone(
  1. Pointer<NSZone> zone
)

allocWithZone:

Implementation

static UIWindow allocWithZone(ffi.Pointer<objc.NSZone> zone) {
  final $ret = _objc_msgSend_1cwp428(_class_UIWindow, _sel_allocWithZone_, zone);
  return UIWindow.fromPointer($ret, retain: false, release: true);
}