printLog function

void printLog(
  1. Object? object
)

Wrapper around print, use it to print user-facing messages (these will be visible in release mode too)

Implementation

void printLog(Object? object){
  print(object);
}