fillAttributes method
Fills the entire buffer with the specified attributes.
Implementation
@override
void fillAttributes({String? char, int? fg, int? bg, int? modifiers}) {
fillRect(
Rect(0, 0, bounds.width, bounds.height),
char: char,
fg: fg,
bg: bg,
modifiers: modifiers,
);
}