folderPlus property

AppIconData get folderPlus

regular: folder-plus thin: folder-plus light: folder-plus bold: folder-plus fill: folder-plus duotone: folder-plus

Implementation

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