BannerPainter constructor

const BannerPainter({
  1. required Color backgroundColor,
  2. required Color textColor,
  3. required String text,
})

Implementation

const BannerPainter({
  required this.backgroundColor,
  required this.textColor,
  required this.text,
});