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