getBooleanArray method

List<bool>? getBooleanArray(
  1. String key
)

Returns the value associated with the given key, or null if no mapping of the desired type exists for the given key or a null value is explicitly associated with the key.

@param key a String, or null @return a boolean[] value, or null

Implementation

List<bool>? getBooleanArray(String key) {
  return getBooleanList(key);
}