setBackgroundColor method

void setBackgroundColor(
  1. Color color
)

Sets the terminal background color to color.

Implementation

void setBackgroundColor(Color color) {
  _checkNotDisposed();
  _bindings.setBackgroundColor(_handle, color);
}