getBoolean method

bool getBoolean(
  1. String key
)

Gets the value for the given key as a boolean. Convenience method for calling remoteConfig.getValue(key).asString().

Implementation

bool getBoolean(String key) => jsObject.getBoolean(key);