filePdf static method

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

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

Implementation

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