findGame method

Game? findGame()

Implementation

Game? findGame() {
  return staticGameInstance ??
      ((this is Game) ? (this as Game) : _parent?.findGame());
}