dotOutline static method

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

regular: dot-outline thin: dot-outline light: dot-outline bold: dot-outline fill: dot-outline duotone: dot-outline

Implementation

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