fromNativePtr static method
Implementation
static CameraCallback fromNativePtr(Pointer<Void> ptr) {
final listener = _pointerToListener[ptr];
if (listener == null) {
throw Exception();
}
return listener;
}
static CameraCallback fromNativePtr(Pointer<Void> ptr) {
final listener = _pointerToListener[ptr];
if (listener == null) {
throw Exception();
}
return listener;
}