TextLine constructor

TextLine({
  1. required String text,
  2. String? language,
  3. List<Offset> cornerPoints = const [],
  4. Rect? frame,
  5. List<TextElement> elements = const [],
})

Implementation

TextLine({
  required this.text,
  this.language,
  this.cornerPoints = const [],
  this.frame,
  this.elements = const [],
});