withBody method

HttpWaitStrategy withBody(
  1. String body
)

Sets a request body to include with each probe request.

Returns this for chaining.

Implementation

HttpWaitStrategy withBody(String body) {
  _body = body;
  return this;
}