set_text_style abstract method

void set_text_style({
  1. bool bold,
  2. bool underscore,
  3. bool blink,
  4. bool inverted,
})

Sets the text style.

Note that not all styles may be supported by all terminals.

Implementation

void set_text_style({
  final bool bold,
  final bool underscore,
  final bool blink,
  final bool inverted,
});