EmailField constructor

const EmailField({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? label,
  4. FormFieldValidator<String>? validator,
})

Implementation

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