setCustomDoubleAttribute method

void setCustomDoubleAttribute(
  1. double value,
  2. String key
)

Implementation

void setCustomDoubleAttribute(double value, String key) {
  if (!_validateCustomAttributeKey(key, true)) {
    return;
  }
  customAttributes[key] = value;
}