RoundedBackgroundTextPainter constructor

const RoundedBackgroundTextPainter({
  1. required Color backgroundColor,
  2. required TextPainter text,
  3. required double innerRadius,
  4. required double outerRadius,
})

Implementation

const RoundedBackgroundTextPainter({
  required this.backgroundColor,
  required this.text,
  required this.innerRadius,
  required this.outerRadius,
});