updateMessageInteractionInfo property

UpdateMessageInteractionInfo? updateMessageInteractionInfo

The information about interactions with a message has changed

Implementation

UpdateMessageInteractionInfo? get updateMessageInteractionInfo {
  if (this is UpdateMessageInteractionInfo) {
    return this as UpdateMessageInteractionInfo;
  }
  return null;
}