debugLog function

void debugLog(
  1. Object? object
)

Wrapper around print

Implementation

void debugLog(Object? object) {
  if (kDebugMode) {
    print(object);
  }
}