EmailInput constructor

const EmailInput({
  1. TextEditingController? controller,
  2. String? validator(
    1. String?
    )?,
  3. String? hintText,
  4. Key? key,
})

Implementation

const EmailInput({
  this.controller,
  this.validator,
  this.hintText,
  Key? key,
}) : super(key: key);