flutter-idea/src/io/flutter/editor/FlutterCupertinoIcons.java [27:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    catch (IOException e) {
      FlutterUtils.warn(LOG, e);
    }
  }

  public static Icon getIconForHex(String hexValue) {
    final String iconName = icons.getProperty(hexValue + ".codepoint");
    return getIcon(iconName);
  }

  public static Icon getIconForName(String name) {
    return getIcon(name);
  }

  private static Icon getIcon(String name) {
    if (name == null) {
      return null;
    }
    final String path = icons.getProperty(name);
    if (path == null) {
      return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flutter-idea/src/io/flutter/editor/FlutterMaterialIcons.java [27:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    catch (IOException e) {
      FlutterUtils.warn(LOG, e);
    }
  }

  public static Icon getIconForHex(String hexValue) {
    final String iconName = icons.getProperty(hexValue + ".codepoint");
    return getIcon(iconName);
  }

  public static Icon getIconForName(String name) {
    return getIcon(name);
  }

  private static Icon getIcon(String name) {
    if (name == null) {
      return null;
    }
    final String path = icons.getProperty(name);
    if (path == null) {
      return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



