printD function

void printD([
  1. String? tag,
  2. Object? msg
])

此日志一直输出。

Implementation

void printD([String? tag, Object? msg]) {
  MyLog.d(tag, msg);
}