printIfDebug static method
Prints a message only in debug mode.
Parameters:
s: The message to print
Only prints when kDebugMode is true.
Implementation
static void printIfDebug(String s) {
if (kDebugMode) {
printAlways(s);
}
}
Prints a message only in debug mode.
Parameters:
s: The message to printOnly prints when kDebugMode is true.
static void printIfDebug(String s) {
if (kDebugMode) {
printAlways(s);
}
}