fileImage property

AppIconData get fileImage

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

Implementation

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