filePpt static method

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

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

Implementation

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