lectern static method

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

regular: lectern thin: lectern light: lectern bold: lectern fill: lectern duotone: lectern

Implementation

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