toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (clientId != null) 'clientId': clientId!,
  if (enumFilterType != null) 'enumFilterType': enumFilterType!,
  if (errorEnumString != null) 'errorEnumString': errorEnumString!,
  if (retryAttempt != null) 'retryAttempt': retryAttempt!,
  if (taskName != null) 'taskName': taskName!,
  if (taskNumber != null) 'taskNumber': taskNumber!,
  if (triggerId != null) 'triggerId': triggerId!,
  if (warningEnumString != null) 'warningEnumString': warningEnumString!,
  if (workflowId != null) 'workflowId': workflowId!,
  if (workflowName != null) 'workflowName': workflowName!,
};