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