AppwriteTextField constructor

const AppwriteTextField({
  1. Key? key,
  2. required TextEditingController controller,
  3. required String labelText,
  4. bool obscureText = false,
  5. bool phone = false,
  6. String errorText = '',
  7. bool errorBool = false,
})

Implementation

const AppwriteTextField({
  super.key,
  required this.controller,
  required this.labelText,
  this.obscureText = false,
  this.phone = false,
  this.errorText = '',
  this.errorBool = false,
});