HighlightTextRounded constructor

const HighlightTextRounded({
  1. Key? key,
  2. required String text,
  3. required TextStyle style,
  4. double? maxWidth,
  5. double radius = 5,
  6. Color markColor = Colors.white,
  7. TextAlign textAlign = TextAlign.center,
  8. double bold = 5,
  9. bool isAllCornerRound = true,
})

Implementation

const HighlightTextRounded({
  Key? key,
  required this.text,
  required this.style,
  this.maxWidth,
  this.radius = 5,
  this.markColor = Colors.white,
  this.textAlign = TextAlign.center,
  this.bold = 5,
  this.isAllCornerRound = true,
}) : super(key: key);