InputEmailWidget constructor

const InputEmailWidget({
  1. Key? key,
  2. required dynamic onSubmitted(
    1. String value
    ),
  3. String? initialValue,
  4. dynamic onValueChange(
    1. String value
    )?,
  5. Widget? suffixIcon,
  6. dynamic onFocus(
    1. bool value
    )?,
})

Implementation

const InputEmailWidget({
  super.key,
  required this.onSubmitted,
  this.initialValue,
  this.onValueChange,
  this.suffixIcon,
  this.onFocus,
});