fileHtml property

AppIconData get fileHtml

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

Implementation

static AppIconData get fileHtml {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.fileHtml;
    case AppIconsStyle.thin:
      return AppIconsThin.fileHtml;
    case AppIconsStyle.light:
      return AppIconsLight.fileHtml;
    case AppIconsStyle.bold:
      return AppIconsBold.fileHtml;
    case AppIconsStyle.fill:
      return AppIconsFill.fileHtml;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.fileHtml;
  }
}