discoBall static method

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

regular: disco-ball thin: disco-ball light: disco-ball bold: disco-ball fill: disco-ball duotone: disco-ball

Implementation

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