stopBackgroundSync method
Implementation
@override
Future<void> stopBackgroundSync() async {
try {
await BackgroundSyncService.stopBackgroundSync();
_log('info', 'Sincronização em background parada');
} catch (e, s) {
_log('error', 'Erro ao parar sync em background',
error: e, stackTrace: s);
}
}