mapPin static method

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

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

Implementation

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