fileDashed property

AppIconData get fileDashed

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

Implementation

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