d static method

void d(
  1. String message, {
  2. String tag = "",
  3. bool path = false,
})

d : debug Debugging logs helpful during development, omitted from release builds.

Implementation

static void d(String message, {String tag = "", bool path = false}) => debugPrint(LogExtension.convert(tag: tag, message: message, logType: LogType.debug, path: path));