TextItem constructor

TextItem(
  1. String value, {
  2. bool isBold = false,
  3. bool isItalic = false,
  4. bool isUnderline = false,
  5. bool isStrikeThrough = false,
})

Implementation

TextItem(
  this.value, {
  this.isBold = false,
  this.isItalic = false,
  this.isUnderline = false,
  this.isStrikeThrough = false,
});