println method

void println(
  1. String msg, [
  2. Context? ctx
])

Implementation

void println(String msg, [Context? ctx]) {
  print(msg);
}