identificationBadge static method

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

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

Implementation

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