Html constructor

Html({
  1. required String rawHtml,
  2. bool? isExternal = false,
  3. List<Map<String, String>>? resources = const [],
})

Implementation

Html({
  required this.rawHtml,
  this.isExternal = false,
  this.resources = const [],
});