resetBackground method

void resetBackground()
inherited

Implementation

void resetBackground() {
  final normalTextColor = _assignedColors[1];
  if (normalTextColor == null) {
    _cursorStyle.resetBackgroundColor();
    return;
  }
  _cursorStyle.background = _namedColor(normalTextColor.background);
}