setAlternateTextColor method
Implementation
@override
void setAlternateTextColor(int attribute, int foreground, int background) {
if (attribute < 0 || attribute > 15) return;
if (!_isDecColor(foreground) || !_isDecColor(background)) return;
_alternateTextColors[attribute] = (
foreground: foreground,
background: background,
);
}