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