TextRun constructor

TextRun({
  1. String? content,
  2. List<String>? suggestedDeletionIds,
  3. List<String>? suggestedInsertionIds,
  4. Map<String, SuggestedTextStyle>? suggestedTextStyleChanges,
  5. TextStyle? textStyle,
})

Implementation

TextRun({
  this.content,
  this.suggestedDeletionIds,
  this.suggestedInsertionIds,
  this.suggestedTextStyleChanges,
  this.textStyle,
});