HighlightedTextBox constructor

const HighlightedTextBox({
  1. Key? key,
  2. required Widget child,
  3. Color? backgroundColor,
})

Implementation

const HighlightedTextBox({
  super.key,
  required this.child,
  this.backgroundColor,
});