fromString static method

IconData? fromString(
  1. String key
)

Implementation

static IconData? fromString(String key) {
  int? codePoint = iconMap[MdiIcons.toCamelCase(key)];
  if (codePoint == null) return null;
  return _MdiIconData(codePoint);
}