gameType property

Provider<String> gameType
final

Provides the game type's name for the game specified by config

Implementation

static final gameType = Provider<String>(
  (ref) => ref.watch(game).asData?.value.type.name ?? '',
  name: 'GameType',
  dependencies: [game, playerID],
);