HtmlTextHandle constructor

const HtmlTextHandle({
  1. Key? key,
  2. required String data,
  3. double fontSize = 12.0,
  4. Color textColor = Colors.black,
  5. double lineSpacing = 8.0,
})

Implementation

const HtmlTextHandle({
  Key? key,
  required this.data,
  this.fontSize = 12.0,
  this.textColor = Colors.black,
  this.lineSpacing = 8.0,
}) : super(key: key);