Fragment constructor

Fragment(
  1. String text, {
  2. List<String>? styles,
  3. String fontFamily = 'DejaVu Sans',
  4. double fontSize = 14.0,
  5. String? color,
  6. String? highlightColor,
})

Implementation

Fragment(this.text, {
  this.styles,
  this.fontFamily = 'DejaVu Sans',
  this.fontSize = 14.0,
  this.color,
  this.highlightColor,
}) : super(nanoid());