filePng static method

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

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

Implementation

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