fetch method

Future<void> fetch()

Forces a fresh fetch and activation of Remote Config.

Implementation

Future<void> fetch() async {
  final rc = remoteConfig;
  if (rc == null) return;

  await _fetchAndActivate(
    rc,
    context: 'forced fetch',
    recordFatalOnFailure: true,
  );
}