wifiHigh static method

PhosphorIconData wifiHigh([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: wifi-high thin: wifi-high light: wifi-high bold: wifi-high fill: wifi-high duotone: wifi-high

Implementation

static PhosphorIconData wifiHigh(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.wifiHigh;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.wifiHigh;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.wifiHigh;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.wifiHigh;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.wifiHigh;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.wifiHigh;
  }
}