PalmaService constructor

PalmaService()

Implementation

PalmaService() {
  // Escucha cambios de conectividad y sincroniza pendientes en cuanto haya Internet
  Connectivity().onConnectivityChanged.listen((result) {
    if (result != ConnectivityResult.none) {
      checkAndSyncPendingPalmas();
    }
  });
}