Leader.fromJson constructor
Implementation
Leader.fromJson(Map<String, dynamic> json) {
id = json['id'];
score = json['score'];
playerIdentifier = json['playerIdentifier'];
playerName = json['playerName'];
playerAvatar = json['playerAvatar'];
isCurrent = json['isCurrent'];
}