Metrics constructor

Metrics({
  1. List<MetricsValue>? activeUsers,
  2. List<MetricsValue>? failedExecutions,
  3. List<MetricsValue>? totalExecutions,
})

Implementation

Metrics({
  this.activeUsers,
  this.failedExecutions,
  this.totalExecutions,
});