putBooleanArray method
Inserts a boolean array value into the mapping of this Bundle, replacing any existing value for the given key. Either key or value may be null.
@param key a String, or null @param value a boolean array object, or null
Implementation
void putBooleanArray(String key, List<bool> value) {
putBooleanList(key, value);
}