BannerAddon constructor

BannerAddon({
  1. required String label,
  2. BannerLocation location = BannerLocation.topEnd,
  3. Color color = const Color(0xA0B71C1C),
  4. 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();