skull static method

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

regular: skull thin: skull light: skull bold: skull fill: skull duotone: skull

Implementation

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