将
toJson方法添加到您的
Player班级:
Map<String, dynamic> toJson(){ return { "name": this.name, "imagePath": this.imagePath, "totalGames": this.totalGames, "points": this.points };}然后,您可以调用
jsonEnpre玩家列表:
String enpred = jsonEnpre(players) // this will automatically call toJson on each player



