EmailInput constructor

const EmailInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. bool needsValidation = true,
})

Implementation

const EmailInput({
  super.key,
  required this.controller,
  this.needsValidation = true,
});