UITextHtmlThemeData.config constructor

const UITextHtmlThemeData.config({
  1. TextStyle? pStyle = const TextStyle(fontSize: 14, fontWeight: FontWeight.w400),
  2. TextStyle? strongStyle = const TextStyle(fontSize: 14, fontWeight: FontWeight.bold),
})

Implementation

const UITextHtmlThemeData.config({
  this.pStyle = const TextStyle(
    fontSize: 14,
    fontWeight: FontWeight.w400,
  ),
  this.strongStyle = const TextStyle(
    fontSize: 14,
    fontWeight: FontWeight.bold,
  ),
});