lg static method

void lg(
  1. String message, {
  2. String symbol = '📝',
})

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');
  }
}