delHtml static method

String delHtml(
  1. String content,
  2. double width,
  3. BuildContext context, {
  4. String? fontSize,
})

Implementation

static String delHtml(String content, double width, BuildContext context,
    {String? fontSize}) {
  var widthPx = width * MediaQuery.of(context).devicePixelRatio;
  return getWebContent(content, widthPx.toInt(), fontSize: fontSize);
}