w static method
Implementation
static void w(
{String? biz, required String msg, String? docUrl, Object? error}) {
if (_shouldLog(AntdLogLevel.warning)) {
_printLog('Warning', biz,
'$msg${error != null ? ' - Error: $error' : ''}', docUrl);
}
}