dotsThree static method

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

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

Implementation

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