fillAttributes method

  1. @override
void fillAttributes({
  1. String? char,
  2. int? fg,
  3. int? bg,
  4. int? modifiers,
})
override

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,
  );
}