processRes method

  1. @override
Future<void> processRes({
  1. required List<int> res,
  2. required ClientResponse ohttpContext,
})

Implementation

@override
Future<void> processRes(
    {required List<int> res, required ClientResponse ohttpContext}) {
  try {
    return super.processRes(ohttpContext: ohttpContext, res: res);
  } on error.PayjoinError catch (e) {
    throw mapPayjoinError(e);
  }
}