copyWith method

CreateWorkflowTransitionRule copyWith({
  1. Map<String, dynamic>? configuration,
  2. String? type,
})

Implementation

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