HighlightWrapper constructor

const HighlightWrapper({
  1. Key? key,
  2. required Widget child,
  3. bool highlight = false,
  4. bool enableProfile = true,
  5. bool onAndOff = true,
  6. bool refresh = true,
})

Implementation

const HighlightWrapper({
  super.key,
  required this.child,
  this.highlight = false,
  this.enableProfile = true,
  this.onAndOff = true,
  this.refresh = true,
});