withOptimistic method

InteractionBuilder<T> withOptimistic(
  1. bool supports
)

Sets whether optimistic updates are supported.

Implementation

InteractionBuilder<T> withOptimistic(bool supports) {
  _supportsOptimistic = supports;
  return this;
}