stringColor function
Implementation
bool stringColor(
Pointer<SdlRenderer> renderer,
double x,
double y,
String s,
int color,
) {
final co = Uint32List.fromList([color]).buffer.asUint8List();
return stringRgba(renderer, x, y, s, co[0], co[1], co[2], co[3]);
}