ARObjectManager constructor

ARObjectManager(
  1. int id, {
  2. bool debug = false,
})

Implementation

ARObjectManager(int id, {this.debug = false}) {
  _channel = MethodChannel('arobjects_$id');
  _channel.setMethodCallHandler(_platformCallHandler);
  if (debug) {
    print("ARObjectManager initialized");
  }
}