setCellWithAlphaBlending method
Sets a cell at (x, y) with full alpha-blending support.
attributes must fit an unsigned 32-bit value; a violation throws a
pre-invocation RangeError after the lifecycle, character, and bounds
checks.
Implementation
void setCellWithAlphaBlending(
int x,
int y,
String char,
Color fg,
Color bg,
int attributes,
) {
_checkValid();
if (char.isEmpty) throw ArgumentError('Character cannot be empty');
_setCellCodeWithAlphaBlending(x, y, char.runes.first, fg, bg, attributes);
}