CustomHtmlView constructor

const CustomHtmlView({
  1. Key? key,
  2. required String html,
})

Implementation

const CustomHtmlView({
  super.key,
  required this.html,
});