drawString method
Draw text on the underlying image.
Implementation
void drawString(int x, int y, String text, String color) {
img.drawString(
_decodedBytes!,
text,
font: img.arial14,
x: x,
y: y,
color: _toRgbColor(RgbColor.name(color)),
);
}