byName static method

IconData? byName(
  1. String iconName
)

Returns the IconData associated to the symbol name. Case insensitive If the icon name is not present, it returns null

Implementation

static IconData? byName(String iconName) =>
    _lowerValues[iconName.toLowerCase()];