PlayerInfo constructor

const PlayerInfo({
  1. required Channel id,
  2. String? name,
})

Implementation

const PlayerInfo({
  required this.id,
  this.name,
});