prepareSystemListeners method

Future<void> prepareSystemListeners()

Implementation

Future<void> prepareSystemListeners() async {
  systemSubscription?.cancel();
  systemSubscription = systemStatusCollection.doc(systemStatusDocumentName).snapshots().listen(onSystemStatusSnapshotChanged);
}