attributeDoubleList method

  1. @override
Attribute<List<double>> attributeDoubleList(
  1. String key,
  2. List<double> value
)
override

Creates an AttributeValue for the given double.

Implementation

@override
Attribute<List<double>> attributeDoubleList(String key, List<double> value) {
  return AttributeCreate.create(key, value);
}