mapPinSimpleArea static method

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

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

Implementation

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