networkSlash static method

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

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

Implementation

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