getSystemInfo method

  1. @override
Future<SystemInfo> getSystemInfo()
override

Gather system information.

Implementation

@override
Future<SystemInfo> getSystemInfo() async => const SystemInfo(
  os: 'web',
  version: 'unknown',
  arch: 'unknown',
  hostname: 'browser',
  cpuCores: 0,
  memoryBytes: 0,
  shell: 'none',
);