log static method

void log(
  1. String message
)

Implementation

static void log(String message) {
  final location = _getLocation();
  developer.log(
      "${DateTime.now().toIso8601String()} $_tag: $message ${chalk.grey('Location: $location')}");
}