ARObjectManager constructor

ARObjectManager(
  1. int id, {
  2. bool debug = false,
  3. 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");
  }
}