fileVue static method

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

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

Implementation

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