resetForeground method

  1. @override
void resetForeground()
override

Implementation

@override
void resetForeground() {
  final normalTextColor = _assignedColors[1];
  if (normalTextColor == null) {
    _cursorStyle.resetForegroundColor();
    return;
  }
  _cursorStyle.foreground = _namedColor(normalTextColor.foreground);
}