d static method

void d(
  1. String tag,
  2. String msg
)

Debug log

Implementation

static void d(String tag, String msg) {
  if (!_internalLogsEnabled) return;
  debugPrint("[DEBUG][$tag]: $msg");
}