cards static method

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

regular: cards thin: cards light: cards bold: cards fill: cards duotone: cards

Implementation

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