getBooleanList method

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

Implementation

List<bool>? getBooleanList(String key) {
  // unparcel();
  var o = _map[key];
  if (o == null) {
    return null;
  }
  try {
    return o as List<bool>;
  } catch (e) {
    // typeWarning(key, o, "byte[]", e);
    return null;
  }
}