getPropertyAsIntList method

List<int>? getPropertyAsIntList(
  1. String key, [
  2. List<int>? def
])

Gets a property with key as List<int>.

def The default value if key not found.

Implementation

List<int>? getPropertyAsIntList(String key, [List<int>? def]) =>
    getPropertyAs(key, (v) => parseIntsFromInlineList(v, ',', def), def);