d static method

void d({
  1. String? biz,
  2. required String msg,
  3. String? docUrl,
})

Implementation

static void d({String? biz, required String msg, String? docUrl}) {
  if (_shouldLog(AntdLogLevel.debug)) {
    _printLog('Debug', biz, msg, docUrl);
    if (_enableStackTrace) {
      debugPrint("[Antd Logs][Debug]:以下是该模块的堆栈");
      debugPrintStack();
    }
  }
}