logD function

dynamic logD(
  1. dynamic msg
)

Implementation

logD(dynamic msg) {
  if (kDebugMode) {
    debugPrint(msg);
  }
}