archive static method

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

regular: archive thin: archive light: archive bold: archive fill: archive duotone: archive

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;
  }
}