verbose static method
Logs a verbose message to the console for granular debugging.
It will only print if your app's environment is in debug mode.
You can override this by setting alwaysPrint = true.
Use context to interpolate values into the message, e.g. 'User {id}' with {'id': '123'}.
Implementation
static void verbose(
dynamic message, {
Map<String, dynamic>? context,
bool alwaysPrint = false,
}) {
_loggerPrint(message ?? "", 'verbose', alwaysPrint, context: context);
}