chatActionBarReportSpam property

ChatActionBarReportSpam? chatActionBarReportSpam

The chat can be reported as spam using the method reportChat with the reason reportReasonSpam. If the chat is a private chat with a user with an emoji status, then a notice about emoji status usage must be shown

Implementation

ChatActionBarReportSpam? get chatActionBarReportSpam {
  if (this is ChatActionBarReportSpam) {
    return this as ChatActionBarReportSpam;
  }
  return null;
}