getDoubleList method

List<double>? getDoubleList(
  1. String name
)

Gets a Double List attribute value by key. Returns null if the key doesn't exist or if the value is not a Double List.

Implementation

List<double>? getDoubleList(String name) => _getTyped<List<double>>(name);