mapPinArea static method

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

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

Implementation

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