log function

void log(
  1. String msg
)

Implementation

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