Leader constructor

Leader({
  1. String? id,
  2. num? score,
  3. String? playerIdentifier,
  4. String? playerName,
  5. String? playerAvatar,
  6. bool? isCurrent,
})

Implementation

Leader(
    {this.id,
    this.score,
    this.playerIdentifier,
    this.playerName,
    this.playerAvatar,
    this.isCurrent});