isMobileConnected method
Implementation
@override
Future<bool> isMobileConnected() async {
try {
final status = await getConnectivityStatus();
return status.isMobile;
} catch (e) {
SyncUtils.debugLog('Erro ao verificar conexão móvel: $e',
tag: 'SyncConnectivityService');
return false;
}
}