bookOpenText static method

PhosphorIconData bookOpenText([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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 PhosphorIconData bookOpenText(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.bookOpenText;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.bookOpenText;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.bookOpenText;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.bookOpenText;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.bookOpenText;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.bookOpenText;
  }
}