AdBadge constructor

const AdBadge({
  1. Key? key,
  2. Color color = const Color(0x99000000),
  3. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 6, vertical: 2),
  4. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(4)),
  5. String label = "Ad",
  6. TextStyle? textStyle,
})

Implementation

const AdBadge({
  super.key,
  this.color = const Color(0x99000000), // black with alpha
  this.padding = const EdgeInsets.symmetric(horizontal: 6, vertical: 2),
  this.borderRadius = const BorderRadius.all(Radius.circular(4)),
  this.label = "Ad",
  this.textStyle,
});