startAutomaticDetection method
Starts the required detection services stated in the Config that is passed on init. Starting the service will set the SDK to running state. Precondition:
- SDK State to be
.ready
.
Implementation
@override
Future<bool> startAutomaticDetection() async {
var result = await methodChannel.invokeMethod('startAutomaticDetection');
return result;
}