fileImage static method

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

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

Implementation

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