shootingStar static method

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

regular: shooting-star thin: shooting-star light: shooting-star bold: shooting-star fill: shooting-star duotone: shooting-star

Implementation

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