CTextFormFieldControl constructor

CTextFormFieldControl({
  1. bool enable = true,
  2. required String text,
  3. String? error,
  4. bool obscureText = false,
})

Implementation

CTextFormFieldControl({
  this.enable = true,
  required this.text,
  this.error,
  this.obscureText = false,
});