toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'cooldown'] = this.cooldown;
json[r'slot'] = this.slot;
json[r'item'] = this.item;
json[r'character'] = this.character;
return json;
}