TextBlock constructor

TextBlock({
  1. required List<TextLine?> textLines,
  2. required List<MLPoint?> vertexes,
  3. required List<MLTextLanguage?> languageList,
  4. TextBorder? border,
  5. String? stringValue,
  6. String? language,
  7. dynamic possibility,
})

Implementation

TextBlock({
  required this.textLines,
  required this.vertexes,
  required this.languageList,
  this.border,
  this.stringValue,
  this.language,
  this.possibility,
});