BannerAddon constructor
BannerAddon({
- required String label,
- BannerLocation location = BannerLocation.topEnd,
- Color color = const Color(0xA0B71C1C),
- TextStyle style = const TextStyle(color: Color(0xFFFFFFFF), fontSize: 12 * 0.85, fontWeight: FontWeight.w900, height: 1.0),
Implementation
BannerAddon({
required this.label,
this.location = BannerLocation.topEnd,
this.color = const Color(0xA0B71C1C),
this.style = const TextStyle(
color: Color(0xFFFFFFFF),
fontSize: 12 * 0.85,
fontWeight: FontWeight.w900,
height: 1.0,
),
}) : super();