addCustomAttribute method

CustomerAttributesBuilder addCustomAttribute(
  1. String key,
  2. String value
)

Implementation

CustomerAttributesBuilder addCustomAttribute(String key, String value) {
  _customAttributes ??= <String, String>{};
  _customAttributes![key] = value;
  return this;
}