logI function

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

message:支持function,eg. ()=>xxx

Implementation

void logI(
  dynamic message, {
  String? tag,
  Object? error,
  StackTrace? stackTrace,
}) {
  LogUtils.logI(message, tag: tag, error: error, stackTrace: stackTrace);
}