mapPinSimple static method

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

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

Implementation

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