dotsThreeCircleVertical static method

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

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

Implementation

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