WorkflowTransitionRule.fromJson constructor

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

Implementation

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