bookOpen property

AppIconData get bookOpen

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

Implementation

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