| 1 | import 'package:cw_core/crypto_currency.dart'; |
| 2 | |
| 3 | class AnonPayRequest { |
| 4 | CryptoCurrency cryptoCurrency; |
| 5 | String address; |
| 6 | String name; |
| 7 | String? amount; |
| 8 | String email; |
| 9 | String description; |
| 10 | String? fiatEquivalent; |
| 11 | |
| 12 | AnonPayRequest({ |
| 13 | required this.cryptoCurrency, |
| 14 | required this.address, |
| 15 | required this.name, |
| 16 | required this.email, |
| 17 | this.amount, |
| 18 | required this.description, |
| 19 | this.fiatEquivalent, |
| 20 | }); |
| 21 | } |