wifiNone static method

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

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

Implementation

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