BotSeatableCase constructor

const BotSeatableCase({
  1. required String name,
  2. required Map<String, dynamic> gameConfig,
  3. required Map<String, dynamic> botConfig,
  4. required bool expected,
})

Implementation

const BotSeatableCase({
  required super.name,
  required this.gameConfig,
  required this.botConfig,
  required this.expected,
});