dotsThreeOutlineVertical static method

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

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

Implementation

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