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