version method

Future<Map<String, dynamic>> version()

Requests the RES protocol version of the Resgate server.

Implementation

Future<Map<String, dynamic>> version() async {
  var id = await send("version", null, {"protocol": "1.2.1"});
  return await receive(id);
}