crownSimple static method

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

regular: crown-simple thin: crown-simple light: crown-simple bold: crown-simple fill: crown-simple duotone: crown-simple

Implementation

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