fileJs static method

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

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

Implementation

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