wifiLow static method

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

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

Implementation

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