iDebugLog function

void iDebugLog(
  1. String msg
)

Logs

Implementation

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