textAUnderline static method

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

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

Implementation

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