scheduledLocalNotifications property

NSArray? get scheduledLocalNotifications

scheduledLocalNotifications

Implementation

objc.NSArray? get scheduledLocalNotifications {
  objc.checkOsVersionInternal('UIApplication.scheduledLocalNotifications', iOS: (false, (4, 0, 0)));
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_scheduledLocalNotifications);
  return _ret.address == 0 ? null : objc.NSArray.castFromPointer(_ret, retain: true, release: true);
}
set scheduledLocalNotifications (NSArray? value)

setScheduledLocalNotifications:

Implementation

set scheduledLocalNotifications(objc.NSArray? value) {
  objc.checkOsVersionInternal('UIApplication.setScheduledLocalNotifications:', iOS: (false, (4, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_setScheduledLocalNotifications_, value?.ref.pointer ?? ffi.nullptr);
}