d static method

void d(
  1. Object? object, {
  2. String? tag,
})

Implementation

static void d(Object? object, {String? tag}) {
  if (_debugMode) {
    log('$tag d | ${object?.toString()}');
  }
}