EmailInput constructor

const EmailInput({
  1. Key? key,
  2. required TextEditingController controller,
  3. required void onSubmitted(
    1. String value
    ),
  4. FocusNode? focusNode,
  5. bool? autofocus,
  6. String? initialValue,
})

Implementation

const EmailInput({
  Key? key,
  required this.controller,
  required this.onSubmitted,
  this.focusNode,
  this.autofocus,
  this.initialValue,
}) : super(key: key);