toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final argument = this.argument;
final callLogLevel = this.callLogLevel;
final createTime = this.createTime;
final disableConcurrencyQuotaOverflowBuffering =
this.disableConcurrencyQuotaOverflowBuffering;
final duration = this.duration;
final endTime = this.endTime;
final error = this.error;
final executionHistoryLevel = this.executionHistoryLevel;
final labels = this.labels;
final name = this.name;
final result = this.result;
final startTime = this.startTime;
final state = this.state;
final stateError = this.stateError;
final status = this.status;
final workflowRevisionId = this.workflowRevisionId;
return {
'argument': ?argument,
'callLogLevel': ?callLogLevel,
'createTime': ?createTime,
'disableConcurrencyQuotaOverflowBuffering':
?disableConcurrencyQuotaOverflowBuffering,
'duration': ?duration,
'endTime': ?endTime,
'error': ?error,
'executionHistoryLevel': ?executionHistoryLevel,
'labels': ?labels,
'name': ?name,
'result': ?result,
'startTime': ?startTime,
'state': ?state,
'stateError': ?stateError,
'status': ?status,
'workflowRevisionId': ?workflowRevisionId,
};
}