bookOpenText property

AppIconData get bookOpenText

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

Implementation

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