PlayerInfo constructor

const PlayerInfo({
  1. required Channel id,
  2. String? name,
  3. Set<String> serverRoles = const {kDefaultServerRole},
  4. Set<String> gameRoles = const {},
  5. bool registered = false,
  6. bool manageable = false,
})

Implementation

const PlayerInfo({
  required this.id,
  this.name,
  this.serverRoles = const {kDefaultServerRole},
  this.gameRoles = const {},
  this.registered = false,
  this.manageable = false,
});