toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final clientId = this.clientId;
final enumFilterType = this.enumFilterType;
final errorEnumString = this.errorEnumString;
final retryAttempt = this.retryAttempt;
final taskName = this.taskName;
final taskNumber = this.taskNumber;
final triggerId = this.triggerId;
final warningEnumString = this.warningEnumString;
final workflowId = this.workflowId;
final workflowName = this.workflowName;
return {
'clientId': ?clientId,
'enumFilterType': ?enumFilterType,
'errorEnumString': ?errorEnumString,
'retryAttempt': ?retryAttempt,
'taskName': ?taskName,
'taskNumber': ?taskNumber,
'triggerId': ?triggerId,
'warningEnumString': ?warningEnumString,
'workflowId': ?workflowId,
'workflowName': ?workflowName,
};
}