chatEventPollStopped property

ChatEventPollStopped? chatEventPollStopped

A poll in a message was stopped

Implementation

ChatEventPollStopped? get chatEventPollStopped {
  if (this is ChatEventPollStopped) {
    return this as ChatEventPollStopped;
  }
  return null;
}