pentagram static method

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

regular: pentagram thin: pentagram light: pentagram bold: pentagram fill: pentagram duotone: pentagram

Implementation

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