wifiSlash static method

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

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

Implementation

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