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