ensureInitialized method
Ensures the last activated config are available to getters.
Implementation
Future<bool> ensureInitialized() async {
final ensure = _remoteConfig != null;
if (ensure) {
await _remoteConfig?.ensureInitialized();
}
return ensure;
}