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