getBool method

bool getBool(
  1. String key
)

Gets the value for a given key as a bool.

Implementation

bool getBool(String key) {
  return _delegate.getBool(key);
}