WorkflowRuleConfiguration.fromJson constructor

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

Implementation

factory WorkflowRuleConfiguration.fromJson(Map<String, Object?> json) {
  return WorkflowRuleConfiguration(
    id: json[r'id'] as String?,
    parameters: json[r'parameters'] as Map<String, Object?>?,
    ruleKey: json[r'ruleKey'] as String? ?? '',
  );
}