HtmlDetails constructor

const HtmlDetails({
  1. required Widget child,
  2. bool open = false,
  3. Key? key,
})

Implementation

const HtmlDetails({
  required this.child,
  this.open = false,
  super.key,
});