findPropertyAsDoubleList method

List<double>? findPropertyAsDoubleList(
  1. List<String> keys, [
  2. List<double>? def
])

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);