fileZip static method

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

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

Implementation

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