d static method

dynamic d(
  1. String message, {
  2. String tag = _DEFAULT_TAG_PREFIX,
})

Print debug logs

Implementation

static d(String message, {String tag = _DEFAULT_TAG_PREFIX}) {
  _log(DEBUG, tag, message);
}