setWithBlockedInfo method

ConversationsRequestBuilder setWithBlockedInfo(
  1. bool value
)

Sets the flag to include blocked information (fluent). Android Reference: ConversationsRequestBuilder.withBlockedInfo(bool)

Implementation

ConversationsRequestBuilder setWithBlockedInfo(bool value) {
  withBlockedInfo = value;
  return this;
}