shieldStar static method

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

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

Implementation

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