refresh method

Future<void> refresh()

Forces a fresh Remote Config fetch and re-emits.

Implementation

Future<void> refresh() async {
  await firebaseService.fetch();
  _updateController.add(null);
}