CreateWorkflowStatusDetails.fromJson constructor
Implementation
factory CreateWorkflowStatusDetails.fromJson(Map<String, Object?> json) {
return CreateWorkflowStatusDetails(
id: json[r'id'] as String? ?? '',
properties: json[r'properties'] as Map<String, Object?>?,
);
}