i static method

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

Implementation

static void i({String? biz, required String msg, String? docUrl}) {
  if (_shouldLog(AntdLogLevel.info)) {
    _printLog('Info', biz, msg, docUrl);
  }
}