copyWith method
Implementation
CreateWorkflowTransitionRule copyWith(
{Map<String, dynamic>? configuration, String? type}) {
return CreateWorkflowTransitionRule(
configuration: configuration ?? this.configuration,
type: type ?? this.type,
);
}