pushPinSimple static method

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

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

Implementation

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