d method

void d(
  1. dynamic msg, {
  2. String? title,
  3. bool format = false,
})

print only in debug mode

Implementation

void d(dynamic msg, {String? title, bool format = false}) {
  if (kDebugMode) {
    _log(msg, LogMode.debug, title, format);
  }
}