textUnderline static method

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

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

Implementation

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