getBool method

  1. @override
bool getBool(
  1. K key
)
override

Returns a value at key as bool.

FormatException is thrown if an underlying value is unavailable or cannot be converted to bool.

Implementation

@override
bool getBool(K key) => toBoolValue(this[key]);