info static method
🔵 Logs an INFO-level message (General application events)
When to use:
- For informational messages that track app state.
- Helps understand normal app flow.
Example Usage:
Log.info("Application started successfully.", fileName: "main.dart");
Log.info("User registration completed.", fileName: "auth_service.dart");
Log.info("Payment processed successfully.", fileName: "payment_service.dart");
Log.info("New message received.", fileName: "chat_service.dart");
Log.info("App theme changed to dark mode.", fileName: "settings_manager.dart");
Implementation
static void info(String message, {required String fileName}) =>
log("🔵 $message", fileName: fileName, level: LogLevel.info);