toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final error = this.error;
final executionId = this.executionId;
final result = this.result;
return {'error': ?error, 'executionId': ?executionId, 'result': ?result};
}