starOfDavid static method

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

regular: star-of-david thin: star-of-david light: star-of-david bold: star-of-david fill: star-of-david duotone: star-of-david

Implementation

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