finalizeProposal method
Implementation
@override
Future<PayjoinProposal> finalizeProposal(
{required FutureOr<String> Function(String p1) processPsbt,
BigInt? minFeeRateSatPerVb,
hint}) async {
try {
final res = await super.finalizeProposal(
processPsbt: processPsbt, minFeeRateSatPerVb: minFeeRateSatPerVb);
return PayjoinProposal._(field0: res.field0);
} on error.PayjoinError catch (e) {
throw mapPayjoinError(e);
}
}