LanguageTool constructor

LanguageTool({
  1. bool picky = false,
  2. String language = 'auto',
})

Class to interact with the LanguageTool API.

Use check to check text for spelling and grammar mistakes.

Currently only available with the free version.

Implementation

LanguageTool({
  this.picky = false,
  this.language = 'auto',
});