ARAnchorManager constructor

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

Implementation

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