toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'monsters_killed'] = this.monstersKilled;
  json[r'resources_gathered'] = this.resourcesGathered;
  json[r'action_counts'] = this.actionCounts;
  json[r'deaths'] = this.deaths;
  return json;
}