doPrint function

void doPrint(
  1. String msg
)

Implementation

void doPrint(String msg) {
  try {
    if (kDebugMode) {
      print(msg);
    }
  } catch (_) {

  }

}