identificationBadge static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}