filePy static method

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

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

Implementation

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