getPropertyAsDoubleList method

List<double>? getPropertyAsDoubleList(
  1. String key, [
  2. List<double>? def
])

Gets a property with key as List<double>.

def The default value if key not found.

Implementation

List<double>? getPropertyAsDoubleList(String key, [List<double>? def]) =>
    getPropertyAs(key, (v) => parseDoublesFromInlineList(v, ',', def), def);