startPolling method
Implementation
@override
void startPolling() {
// Create and launch the polling process here...
this.polling = Polling(intervalPolling, () async {
await _downloadScript();
});
this.polling?.start();
}
@override
void startPolling() {
// Create and launch the polling process here...
this.polling = Polling(intervalPolling, () async {
await _downloadScript();
});
this.polling?.start();
}