mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-29 04:49:51 +00:00
add note decryption from QR code (#466)
This commit is contained in:
parent
08f1976921
commit
d22738da64
2 changed files with 7 additions and 2 deletions
|
@ -1,18 +1,22 @@
|
|||
class PaymentRequest {
|
||||
PaymentRequest(this.address, this.amount);
|
||||
PaymentRequest(this.address, this.amount, this.note);
|
||||
|
||||
factory PaymentRequest.fromUri(Uri uri) {
|
||||
var address = "";
|
||||
var amount = "";
|
||||
var note = "";
|
||||
|
||||
if (uri != null) {
|
||||
address = uri.path;
|
||||
amount = uri.queryParameters['tx_amount'] ?? uri.queryParameters['amount'] ?? "";
|
||||
note = uri.queryParameters['tx_description']
|
||||
?? uri.queryParameters['message'] ?? "";
|
||||
}
|
||||
|
||||
return PaymentRequest(address, amount);
|
||||
return PaymentRequest(address, amount, note);
|
||||
}
|
||||
|
||||
final String address;
|
||||
final String amount;
|
||||
final String note;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue