set_text_style method
void
set_text_style({})
override
Sets the text style.
Note that not all styles may be supported by all terminals.
Implementation
@override
void set_text_style({
final bool bold = false,
final bool underscore = false,
final bool blink = false,
final bool inverted = false,
}) {
stdout.write(
ansi_set_text_styles(
bold: bold,
underscore: underscore,
blink: blink,
inverted: inverted,
),
);
}