bookOpenUser static method

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

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

Implementation

static PhosphorIconData bookOpenUser(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.bookOpenUser;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.bookOpenUser;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.bookOpenUser;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.bookOpenUser;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.bookOpenUser;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.bookOpenUser;
  }
}