WorkflowSimpleCondition.fromJson constructor

WorkflowSimpleCondition.fromJson(
  1. Map<String, Object?> json
)

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? ?? '',
  );
}