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