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