fromOptionalPtr static method
Implementation
static Notification? fromOptionalPtr(Pointer<Void> ptr) {
if (ptr.address == 0) return null;
return Notification$Impl.fromNativePtr(ptr);
}
static Notification? fromOptionalPtr(Pointer<Void> ptr) {
if (ptr.address == 0) return null;
return Notification$Impl.fromNativePtr(ptr);
}