getBoolList method

List<bool>? getBoolList(
  1. String name
)

Gets a Boolean List attribute value by key. Returns null if the key doesn't exist or if the value is not a Boolean List.

Implementation

List<bool>? getBoolList(String name) => _getTyped<List<bool>>(name);