cardsThree static method

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

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

Implementation

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