processRes method
Implementation
@override
Future<UncheckedProposal?> processRes(
{required List<int> body, required ClientResponse ctx}) async {
try {
final res = await super.processRes(body: body, ctx: ctx);
if (res != null) {
return UncheckedProposal._(field0: res.field0);
} else {
return null;
}
} on error.PayjoinError catch (e) {
throw mapPayjoinError(e);
}
}