TextFieldTags<T> constructor

const TextFieldTags<T>({
  1. Key? key,
  2. Validator<T>? validator,
  3. List<T>? initialTags,
  4. List<String>? textSeparators,
  5. LetterCase? letterCase,
  6. TextEditingController? textEditingController,
  7. FocusNode? focusNode,
  8. ScrollController? scrollController,
  9. required TextfieldTagsController<T> textfieldTagsController,
  10. required InputFieldBuilder<T> inputFieldBuilder,
})

Implementation

const TextFieldTags({
  Key? key,
  this.validator,
  this.initialTags,
  this.textSeparators,
  this.letterCase,
  this.textEditingController,
  this.focusNode,
  this.scrollController,
  required this.textfieldTagsController,
  required this.inputFieldBuilder,
}) : super(key: key);