reset method
Resets the builder to its initial state for reuse.
Returns this builder instance for method chaining.
Implementation
InteractionBuilder reset() {
_id = null;
_data = {};
_payload = null;
_rollback = null;
_timeout = null;
_supportsOptimistic = true;
_priority = 0;
_tags = {};
_toJsonConverter = null;
return this;
}