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