reset_color_attributes method

  1. @override
void reset_color_attributes()
override

Resets all color attributes and text styles to the default terminal setting.

Implementation

@override
void reset_color_attributes() {
  stdout.write(
    control_sequence_identifier + 'm',
  );
}