mapPinSimpleLine static method

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

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

Implementation

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