BattleUser constructor

BattleUser({
  1. String roomId = '',
  2. String userId = '',
  3. String avatarUrl = '',
  4. String userName = '',
  5. int score = 0,
  6. int ranking = 1,
})

Implementation

BattleUser(
    {this.roomId = '',
    this.userId = '',
    this.avatarUrl = '',
    this.userName = '',
    this.score = 0,
    this.ranking = 1});