getIcon static method

IconData getIcon(
  1. String code
)

Implementation

static IconData getIcon(String code) {
  return IconData(
    WeatherGlyph.getIconGlyph(code) ?? 0,
    fontFamily: 'WeatherIcons',
    fontPackage: 'dynamic_weather_icons',
  );
}