sparkle static method

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

regular: sparkle thin: sparkle light: sparkle bold: sparkle fill: sparkle duotone: sparkle

Implementation

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