profanityFilter property

  1. @TagNumber(1)
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, for instance, "f***". If set to false or omitted, profanities won't be filtered out.

Implementation

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

Implementation

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