graphicsCard static method

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

regular: graphics-card thin: graphics-card light: graphics-card bold: graphics-card fill: graphics-card duotone: graphics-card

Implementation

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