withId method

InteractionBuilder<T> withId(
  1. String id
)

Sets the interaction ID.

The ID should be unique and descriptive.

Implementation

InteractionBuilder<T> withId(String id) {
  _id = id;
  return this;
}