shieldSlash static method

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

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

Implementation

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