d static method

void d(
  1. Object object, {
  2. String? tag,
})

打印debug日志

Implementation

static void d(Object object, {String? tag}) {
  if (_debugMode) {
    _printLog(tag,' d ', object);
  }
}