log function

void log(
  1. Object? object
)

A simple log function that uses print.

Implementation

void log(Object? object) {
  // NOTE(jeroen-meijer): Use print to avoid the need for a logger dependency.
  // ignore: avoid_print
  print(object);
}