file static method

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

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

Implementation

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