NodeStatsResponse constructor

const NodeStatsResponse({
  1. required String status,
  2. required Int32Type sessions,
  3. required Int32Type guilds,
  4. required Int32Type presences,
  5. required Int32Type calls,
  6. required NodeStatsResponseMemory memory,
  7. required Int32Type processCount,
  8. required Int32Type processLimit,
  9. required Int32Type uptimeSeconds,
  10. required Int32Type nodeCount,
  11. required List<NodeStatsResponseNodes> nodes,
})

Implementation

const NodeStatsResponse({
  required this.status,
  required this.sessions,
  required this.guilds,
  required this.presences,
  required this.calls,
  required this.memory,
  required this.processCount,
  required this.processLimit,
  required this.uptimeSeconds,
  required this.nodeCount,
  required this.nodes,
});