lg static method
Logs a message with a note prefix.
\param message The message to log. \param symbol The symbol to use with the message Sample symbols: '🌐'-network, '🗑️'-cache/cleanup, '⏱️'-timing, '✅'-success, '💾'-database, '🔔'-notification
Implementation
static void lg(String message, {String symbol = '📝'}) {
if (kDebugMode) {
debugPrint('$symbol $message');
}
}