toJson method

Map<String, dynamic> toJson()

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,
  };
}