messageDice property

MessageDice? messageDice

A dice message. The dice value is randomly generated by the server

Implementation

MessageDice? get messageDice {
  if (this is MessageDice) {
    return this as MessageDice;
  }
  return null;
}