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