mapPinPlus static method

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

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

Implementation

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