addData method
Adds a single key-value pair to the interaction data.
Implementation
InteractionBuilder<T> addData(String key, dynamic value) {
_data[key] = value;
return this;
}
Adds a single key-value pair to the interaction data.
InteractionBuilder<T> addData(String key, dynamic value) {
_data[key] = value;
return this;
}