copyWith method
Implementation
CreateCustomFieldContext copyWith(
{String? description,
String? id,
List<String>? issueTypeIds,
String? name,
List<String>? projectIds}) {
return CreateCustomFieldContext(
description: description ?? this.description,
id: id ?? this.id,
issueTypeIds: issueTypeIds ?? this.issueTypeIds,
name: name ?? this.name,
projectIds: projectIds ?? this.projectIds,
);
}