Prints a string representation of the object to the console.
Source
void print(Object object) { String line = "$object"; if (printToZone == null) { printToConsole(line); } else { printToZone(line); } }
Prints a string representation of the object to the console.
void print(Object object) { String line = "$object"; if (printToZone == null) { printToConsole(line); } else { printToZone(line); } }