TextInput constructor

TextInput({
  1. required String text,
  2. String languageCode = 'en',
})

Represents the natural language text to be processed.

Implementation

TextInput({
  required this.text,
  this.languageCode = 'en',
});