folderOpen property

AppIconData get folderOpen

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

Implementation

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