dotsThreeCircle static method

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

regular: dots-three-circle thin: dots-three-circle light: dots-three-circle bold: dots-three-circle fill: dots-three-circle duotone: dots-three-circle

Implementation

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