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