printOut function

void printOut(
  1. Object? object, [
  2. String end = "\n"
])

Prints a string representation of object to stdout.

Appends end to the string representation.

Implementation

void printOut(Object? object, [String end = "\n"]) {
  stdout.write(object);
  stdout.write(end);
}