printText function

void printText(
  1. String text
)

Prints text to the console.

Implementation

void printText(String text) {
  print(text);
}