spade static method

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

regular: spade thin: spade light: spade bold: spade fill: spade duotone: spade

Implementation

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