GetRemoteConfigBool method

Future<bool> GetRemoteConfigBool(
  1. String key,
  2. bool defaultValue
)

Implementation

Future<bool> GetRemoteConfigBool(String key, bool defaultValue) async {
  return _instance.GetRemoteConfigBool(key, defaultValue);
}