getMetrics method

Map<String, dynamic>? getMetrics()

Gets current queue metrics. Returns metrics from the driver if it supports metrics tracking.

Implementation

Map<String, dynamic>? getMetrics() {
  // Metrics are tracked in the driver's metrics object
  // This is a placeholder - implement based on your driver
  return null;
}