Future<String> echo(String message) async { final response = await client.echo(EchoRequest(message: message)); return response.message; }