i static method

void i(
  1. dynamic message, {
  2. String? tag,
  3. Object? error,
  4. StackTrace? stackTrace,
})

信息日志

Implementation

static void i(
  dynamic message, {
  String? tag,
  Object? error,
  StackTrace? stackTrace,
}) {
  _log(
    DKLogLevel.info,
    message,
    tag: tag,
    error: error,
    stackTrace: stackTrace,
  );
}