getStringArrayList method

List<String>? getStringArrayList(
  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 an ArrayList

Implementation

List<String>? getStringArrayList(String key) {
  return getStringList(key);
}