setBackgroundColor method

void setBackgroundColor(
  1. Color color
)

Sets the terminal background color to color.

Implementation

void setBackgroundColor(Color color) {
  if (_disposed) throw StateError('Renderer is disposed');
  _bindings.setBackgroundColor(_ptr, color);
}