EmailTextField constructor

const EmailTextField({
  1. Key? key,
  2. void onEditingComplete()?,
  3. TextInputType? keyboardType,
  4. String? initiaValue,
  5. TextEditingController? controller,
  6. String? hintText,
  7. Widget? prefixIcon,
})

Implementation

const EmailTextField({
  super.key,
  this.onEditingComplete,
  this.keyboardType,
  this.initiaValue,
  this.controller,
  this.hintText,
  this.prefixIcon,
});