WorkflowTransitionRulesUpdateErrors.fromJson constructor
Implementation
factory WorkflowTransitionRulesUpdateErrors.fromJson(
Map<String, Object?> json) {
return WorkflowTransitionRulesUpdateErrors(
updateResults: (json[r'updateResults'] as List<Object?>?)
?.map((i) => WorkflowTransitionRulesUpdateErrorDetails.fromJson(
i as Map<String, Object?>? ?? const {}))
.toList() ??
[],
);
}