getSystemStatus method

Future<SystemStatusModel?> getSystemStatus({
  1. Set<SystemStatusTypeEnum>? systemStatusTypes,
})

Fetches the system status based on the provided types.

This method retrieves various system status information based on the specified systemStatusTypes. It returns a SystemStatusModel object containing CPU usage, disk space, memory statistics, and battery status information.

Throws an UnimplementedError indicating that the method has not been implemented yet.

Implementation

Future<SystemStatusModel?> getSystemStatus({Set<SystemStatusTypeEnum>? systemStatusTypes}) {
  throw UnimplementedError('getSystemStatus() has not been implemented.');
}