profanityFilter property

  1. @TagNumber(5)
bool profanityFilter

If set to true, the server will attempt to filter out profanities, replacing all but the initial character in each filtered word with asterisks, e.g. "f***". If set to false or omitted, profanities won't be filtered out.

Implementation

@$pb.TagNumber(5)
$core.bool get profanityFilter => $_getBF(4);
  1. @TagNumber(5)
void profanityFilter=(bool v)

Implementation

@$pb.TagNumber(5)
set profanityFilter($core.bool v) {
  $_setBool(4, v);
}