printWLog function

void printWLog(
  1. Object? object
)

打印1

Implementation

void printWLog(Object? object) {
  DateTime now = DateTime.now();
  Frame frame = Trace.current().frames[1];
  String message = "$object";
  WLog.d(message, now: now, frame: frame);
}