dot static method

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

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

Implementation

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