copyWith method
Implementation
CustomFieldContext copyWith(
{String? description,
String? id,
bool? isAnyIssueType,
bool? isGlobalContext,
String? name}) {
return CustomFieldContext(
description: description ?? this.description,
id: id ?? this.id,
isAnyIssueType: isAnyIssueType ?? this.isAnyIssueType,
isGlobalContext: isGlobalContext ?? this.isGlobalContext,
name: name ?? this.name,
);
}