getInfo method

Future<GetInfoResult> getInfo()

Returns information about the system.

Implementation

Future<GetInfoResult> getInfo() async {
  var result = await _client.send('SystemInfo.getInfo');
  return GetInfoResult.fromJson(result);
}