pushPinSimpleSlash static method

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

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

Implementation

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