fileRs static method

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

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

Implementation

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