copyWith method

WorkflowTransitionRule copyWith({
  1. dynamic configuration,
  2. String? type,
})

Implementation

WorkflowTransitionRule copyWith({dynamic configuration, String? type}) {
  return WorkflowTransitionRule(
    configuration: configuration ?? this.configuration,
    type: type ?? this.type,
  );
}