fileArchive static method

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

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

Implementation

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