customLogs function
this will customize the prints and you can disable all logs at once
Implementation
void customLogs(
Object? data, {
bool showLog = false,
bool overrideDebugCondition = false,
}) {
if (CustomStylesConfig.showLogStatements || showLog) {
if (kDebugMode || overrideDebugCondition) {
log(data.toString());
return;
}
}
}