dotsThreeOutline static method

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

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

Implementation

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