systemInfo method

Gets information about the system that snapd is running on.

Implementation

Future<SnapdSystemInfoResponse> systemInfo() async {
  var result = await _getSync('/v2/system-info');
  return SnapdSystemInfoResponse.fromJson(result);
}