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