AdBadge constructor
const
AdBadge({
- Key? key,
- Color color = const Color(0x99000000),
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 6, vertical: 2),
- BorderRadius borderRadius = const BorderRadius.all(Radius.circular(4)),
- String label = "Ad",
- 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,
});