EmailInput constructor

const EmailInput({
  1. TextEditingController? controller,
  2. String? validator(
    1. String?
    )?,
  3. String? hintText,
  4. EdgeInsetsGeometry? contentPadding,
  5. TextStyle? labelStyle,
  6. TextStyle? textStyle,
  7. StrutStyle? strutStyle,
  8. dynamic onChanged(
    1. String
    )?,
  9. GestureTapCallback? onTap,
  10. Widget? prefixIcon,
  11. Key? key,
})

Implementation

const EmailInput({
  this.controller,
  this.validator,
  this.hintText,
  this.contentPadding,
  this.labelStyle,
  this.textStyle,
  this.strutStyle,
  this.onChanged,
  this.onTap,
  this.prefixIcon,
  super.key,
});