log function

void log(
  1. Object? object
)

Implementation

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