printMy method

void printMy(
  1. dynamic msg
)

Implementation

void printMy(msg) {
  if (debug) {
    print(flutter_log + "::" + msg);
  }
}