HtmlParts constructor

HtmlParts({
  1. required String openingTag,
  2. required String content,
  3. required String closingTag,
})

Implementation

HtmlParts({
  required this.openingTag,
  required this.content,
  required this.closingTag,
});