Attribute.fromDoubleList constructor

Attribute.fromDoubleList(
  1. String? key,
  2. List<double> value
)

Create an Attribute from a list of double-precision floating-point values.

Implementation

Attribute.fromDoubleList(this.key, List<double> this.value) {
  if (key == null) {
    throw ArgumentError("key can't be null.");
  }
}