textSuperscript static method

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

regular: text-superscript thin: text-superscript light: text-superscript bold: text-superscript fill: text-superscript duotone: text-superscript

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;
  }
}