notebook static method

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

regular: notebook thin: notebook light: notebook bold: notebook fill: notebook duotone: notebook

Implementation

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