toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final errorStatus = this.errorStatus;
final executionTime = this.executionTime;
final workflowInvocation = this.workflowInvocation;
return {
'errorStatus': ?errorStatus,
'executionTime': ?executionTime,
'workflowInvocation': ?workflowInvocation,
};
}