toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'result'] = this.result;
json[r'turns'] = this.turns;
json[r'opponent'] = this.opponent;
json[r'logs'] = this.logs;
json[r'characters'] = this.characters;
return json;
}