TUIEmailField constructor

const TUIEmailField({
  1. Key? key,
  2. TUIEmailFieldLabel label = TUIEmailFieldLabel.to,
  3. required List<String> emails,
  4. bool showSuffix = false,
  5. VoidCallback? onAdd,
  6. VoidCallback? onRemove,
  7. TextEditingController? controller,
})

Implementation

const TUIEmailField({
  super.key,
  this.label = TUIEmailFieldLabel.to,
  required this.emails,
  this.showSuffix = false,
  this.onAdd,
  this.onRemove,
  this.controller,
});