findPropertyAsIntList method
Finds a property with keys
as List<int>.
def
The default value if keys
not found.
Implementation
List<int>? findPropertyAsIntList(List<String> keys, [List<int>? def]) =>
findPropertyAs(keys, (v) => parseIntsFromInlineList(v, ',', def), def);