appDebugPrint function

dynamic appDebugPrint(
  1. dynamic m
)

Implementation

appDebugPrint(m) {
  if (kDebugMode) {
    debugPrint("$m");
  }
}