EmailShadInput constructor

const EmailShadInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. required FocusNode focusNode,
  4. bool enabled = true,
  5. Widget? label,
  6. String? errorText,
  7. ValueChanged<String>? onChanged,
})

Implementation

const EmailShadInput({
  super.key,
  required this.controller,
  required this.focusNode,
  this.enabled = true,
  this.label,
  this.errorText,
  this.onChanged,
});