getIntList method

List<int>? getIntList(
  1. String name
)

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

Implementation

List<int>? getIntList(String name) => _getTyped<List<int>>(name);