mapPinLine static method

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

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

Implementation

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