messageGameScore property

MessageGameScore? messageGameScore

A new high score was achieved in a game

Implementation

MessageGameScore? get messageGameScore {
  if (this is MessageGameScore) {
    return this as MessageGameScore;
  }
  return null;
}