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