copyWith method
WorkflowElementReference
copyWith({
- String? propertyKey,
- String? ruleId,
- ProjectAndIssueTypePair? statusMappingReference,
- String? statusReference,
- String? transitionId,
Implementation
WorkflowElementReference copyWith(
{String? propertyKey,
String? ruleId,
ProjectAndIssueTypePair? statusMappingReference,
String? statusReference,
String? transitionId}) {
return WorkflowElementReference(
propertyKey: propertyKey ?? this.propertyKey,
ruleId: ruleId ?? this.ruleId,
statusMappingReference:
statusMappingReference ?? this.statusMappingReference,
statusReference: statusReference ?? this.statusReference,
transitionId: transitionId ?? this.transitionId,
);
}