I'm new to Android Studio and Flutter. I'm trying to make a list of icons that I can iterate into a ListView.
I receive this error:
The element type 'IconData' can't be assigned to the list type 'Icon'.
For doing this:
static const _iconTypes = <Icon>[
Icons.cake,
Icons.add_location_sharp,
Icons.zoom_in_outlined,
Icons.auto_awesome_motion,
Icons.call_end_sharp,
Icons.equalizer_rounded,
Icons.wifi_lock,
Icons.mail,
];
Is <icon> an incorrect datatype to use here?
Thanks