ArCoreController constructor

ArCoreController({
  1. required int id,
  2. bool? enableTapRecognizer,
  3. bool? enablePlaneRenderer,
  4. bool? enableUpdateListener,
  5. bool? debug = false,
})

Implementation

ArCoreController(
    {required this.id,
    this.enableTapRecognizer,
    this.enablePlaneRenderer,
    this.enableUpdateListener,
    this.debug = false
//    @required this.onUnsupported,
    }) {
  _channel = MethodChannel('arcore_flutter_plugin_$id');
  _channel.setMethodCallHandler(_handleMethodCalls);
  init();
}