logInfo static method

void logInfo(
  1. String message, {
  2. bool enableDebugLogs = false,
})

Logs informational messages

Implementation

static void logInfo(String message, {bool enableDebugLogs = false}) {
  if (enableDebugLogs) {
    developer.log('🔵 MonerisPayment: $message', name: 'MonerisPayment');
  }
}