copyWith method
Implementation
CTextFormFieldControl copyWith({
String? text,
bool? enable,
bool? obscureText,
String? error,
}) {
return CTextFormFieldControl(
text: text ?? this.text,
enable: enable ?? this.enable,
obscureText: obscureText ?? this.obscureText,
error: error,
);
}