folderSimpleDashed property

AppIconData get folderSimpleDashed

regular: folder-simple-dashed thin: folder-simple-dashed light: folder-simple-dashed bold: folder-simple-dashed fill: folder-simple-dashed duotone: folder-simple-dashed

Implementation

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