copyWith method
Implementation
WorkflowTransitionProperty copyWith(
{String? id, String? key, String? value}) {
return WorkflowTransitionProperty(
id: id ?? this.id,
key: key ?? this.key,
value: value ?? this.value,
);
}
WorkflowTransitionProperty copyWith(
{String? id, String? key, String? value}) {
return WorkflowTransitionProperty(
id: id ?? this.id,
key: key ?? this.key,
value: value ?? this.value,
);
}