osInfo method

Future<OsInfo> osInfo()

Implementation

Future<OsInfo> osInfo() async {
  var response = await client.sendRequest('stats.osInfo', []);
  return OsInfo.fromJson(response);
}