volume static method

void volume(
  1. String message, [
  2. String? tag
])

Log volume events (debug level)

Implementation

static void volume(String message, [String? tag]) {
  if (_level >= LogLevel.debug) {
    final prefix = tag != null ? '[$tag] ' : '';
    debugPrint('🔊 VOLUME: $prefix$message');
  }
}