info static method

void info(
  1. String tag,
  2. String message
)

Logs an informational message tagged with the given tag.

Implementation

static void info(String tag, String message) {
  // ignore: avoid_print
  print('[${DateTime.now().toIso8601String()}] [$tag] $message');
}