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