CreateWorkflowTransitionRule.fromJson constructor

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

Implementation

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