shutdown method

Future<BridgeResponse> shutdown()

Shutdown the protocol cleanly.

Implementation

Future<BridgeResponse> shutdown() async {
  final response = await sendRequest('shutdown', null);
  return response;
}