ARSessionManager constructor
      
      ARSessionManager(
    
    
- int id,
- BuildContext buildContext,
- PlaneDetectionConfig planeDetectionConfig, {
- bool debug = false,
Implementation
ARSessionManager(int id, this.buildContext, this.planeDetectionConfig,
    {this.debug = false}) {
  _channel = MethodChannel('arsession_$id');
  _channel.setMethodCallHandler(_platformCallHandler);
  if (debug) {
    print("ARSessionManager initialized");
  }
}