fileCss static method

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

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

Implementation

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