mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
5890df86db
* cw-60: fill amount on scan qr on exchange page
18 lines
No EOL
398 B
Dart
18 lines
No EOL
398 B
Dart
class PaymentRequest {
|
|
PaymentRequest(this.address, this.amount);
|
|
|
|
factory PaymentRequest.fromUri(Uri uri) {
|
|
var address = "";
|
|
var amount = "";
|
|
|
|
if (uri != null) {
|
|
address = uri.path;
|
|
amount = uri.queryParameters['tx_amount'] ?? uri.queryParameters['amount'] ?? "";
|
|
}
|
|
|
|
return PaymentRequest(address, amount);
|
|
}
|
|
|
|
final String address;
|
|
final String amount;
|
|
} |