setScanDelay method
Set delay between detections when scanning is active.
delay
- delay in milliseconds between detection for decreasing CPU consumption.
Detection happens every delay
milliseconds, skipping frames during delay
Implementation
Future<void> setScanDelay(int delay) {
return _channel.invokeMethod(_setScanDelayMethod, delay);
}