attributeDoubleList static method

Attribute<List<double>> attributeDoubleList(
  1. String name,
  2. List<double> value
)

Create a double list attribute key

Implementation

static Attribute<List<double>> attributeDoubleList(
    String name, List<double> value) {
  _getAndCacheOtelFactory();
  return OTelFactory.otelFactory!.attributeDoubleList(name, value);
}