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