fileXls static method

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

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

Implementation

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