logRequest static method

void logRequest(
  1. String path
)

Implementation

static void logRequest(String path) {
  final now = DateTime.now();
  print("\n========== 🛰️ [ApiMate Request] [$now] ==========");
  print("Path: $path");
  print("===============================================\n");
}