confetti static method

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

regular: confetti thin: confetti light: confetti bold: confetti fill: confetti duotone: confetti

Implementation

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