iDebugLog function
Logs
Implementation
void iDebugLog(String msg) {
assert(() {
print('${DateTime.now()} [Wrap] $msg');
return true;
}());
}
Logs
void iDebugLog(String msg) {
assert(() {
print('${DateTime.now()} [Wrap] $msg');
return true;
}());
}