ArCoreFaceController constructor

ArCoreFaceController({
  1. int? id,
  2. bool? enableAugmentedFaces,
  3. bool debug = false,
})

Implementation

ArCoreFaceController(
    {int? id, this.enableAugmentedFaces, this.debug = false}) {
  _channel = MethodChannel('arcore_flutter_plugin_$id');
  _channel.setMethodCallHandler(_handleMethodCalls);
  init();
}