starFour static method

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

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

Implementation

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