student static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}