setParticipatedByMe method

ThreadsRequestBuilder setParticipatedByMe(
  1. bool participatedByMe
)

Sets the participated-by-me filter (default true).

Implementation

ThreadsRequestBuilder setParticipatedByMe(bool participatedByMe) {
  this.participatedByMe = participatedByMe;
  return this;
}