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