log method

void log(
  1. dynamic content
)

debug printer

Implementation

void log(dynamic content) {
  print("[${DateTime.now()}]: $content");
}