messageSourceScreenshot property

MessageSourceScreenshot? messageSourceScreenshot

The message was screenshotted; the source must be used only if the message content was visible during the screenshot

Implementation

MessageSourceScreenshot? get messageSourceScreenshot {
  if (this is MessageSourceScreenshot) {
    return this as MessageSourceScreenshot;
  }
  return null;
}