ARObjectManager constructor
ARObjectManager(
- int id, {
- bool debug = false,
- ARGestureConfig gestureConfig = const ARGestureConfig(),
Implementation
ARObjectManager(
int id, {
this.debug = false,
this.gestureConfig = const ARGestureConfig(),
}) {
_channel = MethodChannel('arobjects_$id');
_channel.setMethodCallHandler(_platformCallHandler);
if (debug) {
print("ARObjectManager initialized");
}
}