starAndCrescent static method

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

regular: star-and-crescent thin: star-and-crescent light: star-and-crescent bold: star-and-crescent fill: star-and-crescent duotone: star-and-crescent

Implementation

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