logDebug function
Implementation
logDebug(content, {String? header, isDecodeJson = true}) {
if (isNullOrEmpty(content)) {
return;
}
if (content is Map) {
if (isDecodeJson) {
content = StringUtils.convertJsonToString(content);
} else {
}
}
if (kDebugMode) {
final message = content.toString();
log('$kConsoleGreen$message$kConsoleReset');
}
}