logD function

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

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

Implementation

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