copyWith method
Implementation
UiModificationContextDetails copyWith(
{String? id,
bool? isAvailable,
String? issueTypeId,
String? projectId,
String? viewType}) {
return UiModificationContextDetails(
id: id ?? this.id,
isAvailable: isAvailable ?? this.isAvailable,
issueTypeId: issueTypeId ?? this.issueTypeId,
projectId: projectId ?? this.projectId,
viewType: viewType ?? this.viewType,
);
}