WorkflowSimpleCondition.fromJson constructor
Implementation
factory WorkflowSimpleCondition.fromJson(Map<String, Object?> json) {
return WorkflowSimpleCondition(
configuration: json[r'configuration'] as Map<String, Object?>?,
nodeType: json[r'nodeType'] as String? ?? '',
type: json[r'type'] as String? ?? '',
);
}