getStringList method

List<String>? getStringList(
  1. String name
)

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

Implementation

List<String>? getStringList(String name) => _getTyped<List<String>>(name);