process method
Processes a request message and returns the response as a Uint8List.
Implementation
Future<Uint8List> process(Uint8List requestMessageBytes) async {
final response = await _server.process(requestMessageBytes.toJS).toDart;
return response.toDart;
}