debugPrintWLog function

void debugPrintWLog(
  1. String? message, {
  2. int? wrapWidth,
})

打印2

Implementation

void debugPrintWLog(String? message, {int? wrapWidth}) {
  DateTime now = DateTime.now();
  Frame frame = Trace.current().frames[1];
  WLog.d(message ?? "", now: now, frame: frame);
}