setCellWithAlphaBlending method
Sets a cell at (x, y) with full alpha-blending support.
Implementation
void setCellWithAlphaBlending(
int x,
int y,
String char,
Color fg,
Color bg,
int attributes,
) {
if (char.isEmpty) throw ArgumentError('Character cannot be empty');
_setCellCodeWithAlphaBlending(x, y, char.runes.first, fg, bg, attributes);
}