NesIcon constructor

const NesIcon({
  1. Key? key,
  2. required NesIconData iconData,
  3. Size? size,
  4. Color? primaryColor,
  5. Color? secondaryColor,
  6. Color? accentColor,
  7. Color? shadowColor,
})

Widget that renders icons from the Flutter Nes design library.

Check NesIcons for the library of built in icons.

Implementation

const NesIcon({
  super.key,
  required this.iconData,
  this.size,
  this.primaryColor,
  this.secondaryColor,
  this.accentColor,
  this.shadowColor,
});