debugPrint function

void debugPrint(
  1. String msg
)

Implementation

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