amount method

  1. @override
double? amount({
  1. dynamic hint,
})

Gets the amount in btc.

Implementation

@override
double? amount({hint}) {
  try {
    return super.amount();
  } on error.PayjoinError catch (e) {
    throw mapPayjoinError(e);
  }
}