skip to Main Content

Flutter convert List String to List IconData

How can I convert a List<String> to List<IconData>? I have the following ['Icons.check', 'Icons.cancel'] which I get back from the database, and I need to convert it to List<IconData>. I have tried the following: final icons = List<String>.from(widget.values[0]['icons'] as List<IconData>

VIEW QUESTION
Back To Top
Search