toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'slots'] = this.slots;
json[r'expansions'] = this.expansions;
json[r'next_expansion_cost'] = this.nextExpansionCost;
json[r'gold'] = this.gold;
return json;
}