UmsService constructor

UmsService()

Implementation

UmsService() {
  Connectivity().onConnectivityChanged.listen((result) {
    if (result != ConnectivityResult.none) {
      checkAndSyncPendingUms();
    }
  });
}