customLog method
Implementation
customLog(String data) {
bool status = checkEnv();
if (status) {
if (kDebugMode) {
log(data);
} else {
debugPrint(data);
}
}
}
customLog(String data) {
bool status = checkEnv();
if (status) {
if (kDebugMode) {
log(data);
} else {
debugPrint(data);
}
}
}