Prints a string representation of object to stderr.
object
Appends end to the string representation.
end
void printErr(Object? object, [String end = "\n"]) { stderr.write(object); stderr.write(end); }