pushPinSlash static method

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

regular: push-pin-slash thin: push-pin-slash light: push-pin-slash bold: push-pin-slash fill: push-pin-slash duotone: push-pin-slash

Implementation

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