dotsNine static method

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

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

Implementation

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