EmailTextField constructor

const EmailTextField({
  1. required FlutterSignal<Email> email,
  2. void onChanged(
    1. String
    )?,
  3. Key? textFieldKey,
  4. Key? key,
})

Implementation

const EmailTextField({
  required this.email,
  this.onChanged,
  this.textFieldKey,
  super.key,
});