identificationCard static method

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

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

Implementation

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