copyWith method
Implementation
CustomFieldContextProjectMapping copyWith(
{String? contextId, bool? isGlobalContext, String? projectId}) {
return CustomFieldContextProjectMapping(
contextId: contextId ?? this.contextId,
isGlobalContext: isGlobalContext ?? this.isGlobalContext,
projectId: projectId ?? this.projectId,
);
}