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