LanguageToolTextField constructor

const LanguageToolTextField({
  1. required LanguageToolController controller,
  2. TextStyle? style,
  3. InputDecoration decoration = const InputDecoration(),
  4. String language = 'auto',
  5. MistakePopup? mistakePopup,
  6. int? maxLines = 1,
  7. int? minLines,
  8. bool expands = false,
  9. Key? key,
})

Creates a widget that checks grammar errors.

Implementation

const LanguageToolTextField({
  required this.controller,
  this.style,
  this.decoration = const InputDecoration(),
  this.language = 'auto',
  this.mistakePopup,
  this.maxLines = 1,
  this.minLines,
  this.expands = false,
  super.key,
});