setBackgroundColor method
Sets the terminal background color to color.
Implementation
void setBackgroundColor(Color color) {
if (_disposed) throw StateError('Renderer is disposed');
_bindings.setBackgroundColor(_ptr, color);
}
Sets the terminal background color to color.
void setBackgroundColor(Color color) {
if (_disposed) throw StateError('Renderer is disposed');
_bindings.setBackgroundColor(_ptr, color);
}