exitGame property

FutureProvider<bool> exitGame
final

Implementation

static final exitGame = FutureProvider<bool>(
  (ref) => ref.watch(gameClient).exitGame(ref.read(playerID), ref.read(code)),
  name: 'ExitGame',
  dependencies: [gameClient, playerID, code],
);