stopAutomaticDetection method

  1. @override
Future<bool> stopAutomaticDetection()
override

Stops the automatic detection service. Stoping the service will set the SDK State back to ready. Precondition:

  • SDK State to be .running.

Implementation

@override
Future<bool> stopAutomaticDetection() async {
  var result = await methodChannel.invokeMethod('stopAutomaticDetection');
  return result;
}