processResponse method

  1. @override
Future<String> processResponse({
  1. required List<int> response,
})

Implementation

@override
Future<String> processResponse({required List<int> response}) {
  try {
    return super.processResponse(response: response);
  } on error.PayjoinError catch (e) {
    throw mapPayjoinError(e);
  }
}