markerCircle static method

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

regular: marker-circle thin: marker-circle light: marker-circle bold: marker-circle fill: marker-circle duotone: marker-circle

Implementation

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