fetchAndActivate method

Future<bool> fetchAndActivate()

Performs a fetch and activate operation, as a convenience.

Returns bool in the same way that is done for activate.

Implementation

Future<bool> fetchAndActivate() async {
  bool configChanged = await _delegate.fetchAndActivate();
  notifyListeners();
  return configChanged;
}