DocumentBlock constructor

DocumentBlock({
  1. required List<MLTextLanguage?> languageList,
  2. required List<DocumentSection?> sections,
  3. TextBorder? border,
  4. String? stringValue,
  5. Interval? interval,
  6. dynamic possibility,
})

Implementation

DocumentBlock({
  required this.languageList,
  required this.sections,
  this.border,
  this.stringValue,
  this.interval,
  this.possibility,
});