getBool method

  1. @override
Future<bool> getBool(
  1. String key,
  2. bool defaultValue
)
override

Implementation

@override
Future<bool> getBool(String key, bool defaultValue) {
  return HacklePlatform.instance
      .remoteConfigGetBool(key, defaultValue, user: _user);
}