printLog function

void printLog(
  1. String log
)

Implementation

void printLog(String log) {
  // ignore: avoid_print
  print(log);
}