startCapturing method
Implementation
void startCapturing({Duration interval = const Duration(seconds: 3)}) {
_timer = Timer.periodic(interval, (_) async {
await _captureScreenshot();
});
}
void startCapturing({Duration interval = const Duration(seconds: 3)}) {
_timer = Timer.periodic(interval, (_) async {
await _captureScreenshot();
});
}