NesIconBadge constructor

const NesIconBadge({
  1. Key? key,
  2. required NesIconData iconData,
  3. required String badge,
  4. Size? size,
  5. Color? primaryColor,
  6. Color? secondaryColor,
})

Widget that renders icons from the Flutter Nes design library.

Check NesIcons for the library of built in icons.

Implementation

const NesIconBadge({
  super.key,
  required this.iconData,
  required this.badge,
  this.size,
  this.primaryColor,
  this.secondaryColor,
});