fileHtml static method

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

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

Implementation

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