student static method

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

regular: student thin: student light: student bold: student fill: student duotone: student

Implementation

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