underlineAnsi256 method

AnsiPen underlineAnsi256(
  1. int code
)

Sets underline color to xterm 256-color palette index code (0–255).

Implementation

AnsiPen underlineAnsi256(int code) {
  styleStack.add(QuectoColors.underlineAnsi256(code));
  return this;
}