checkErrorPointer static method
Implementation
static void checkErrorPointer(ObjectPtr pointer) {
if (pointer.address != 0) {
throw NSErrorException(
objc.NSError.fromPointer(pointer, retain: true, release: true),
);
}
}
static void checkErrorPointer(ObjectPtr pointer) {
if (pointer.address != 0) {
throw NSErrorException(
objc.NSError.fromPointer(pointer, retain: true, release: true),
);
}
}