dotsThreeVertical static method

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

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

Implementation

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