NiceAdminSystemStatus constructor

const NiceAdminSystemStatus({
  1. double cpu = 0,
  2. double memory = 0,
  3. double disk = 0,
  4. String uptime = '',
  5. List<NiceServiceStatus> services = const [],
})

Implementation

const NiceAdminSystemStatus({
  this.cpu = 0,
  this.memory = 0,
  this.disk = 0,
  this.uptime = '',
  this.services = const [],
});