copyWith method
Implementation
CustomFieldContextDefaultValueProject copyWith(
{String? contextId, String? projectId, String? type}) {
return CustomFieldContextDefaultValueProject(
contextId: contextId ?? this.contextId,
projectId: projectId ?? this.projectId,
type: type ?? this.type,
);
}