pushPin static method

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

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

Implementation

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