iceTrickle method
Implementation
@override
Future<ICETrickleResponse> iceTrickle(
twirp.Context ctx, ICETrickle req) async {
ctx = twirp.withPackageName(ctx, 'signal');
ctx = twirp.withServiceName(ctx, 'SignalServer');
ctx = twirp.withMethodName(ctx, 'IceTrickle');
return interceptor((ctx, req) {
return callIceTrickle(ctx, req);
})(ctx, req);
}