| 1 | import 'package:cw_core/amount/money.dart'; |
| 2 | |
| 3 | class OutputInfo { |
| 4 | const OutputInfo({ |
| 5 | required this.address, |
| 6 | required this.sendAll, |
| 7 | required this.isParsedAddress, |
| 8 | required this.cryptoAmount, |
| 9 | this.fiatAmount, |
| 10 | this.note, |
| 11 | this.extractedAddress, |
| 12 | this.memo, |
| 13 | this.extra = const {}, |
| 14 | }); |
| 15 | |
| 16 | final String? fiatAmount; |
| 17 | final Money cryptoAmount; |
| 18 | final String address; |
| 19 | final String? note; |
| 20 | final String? extractedAddress; |
| 21 | final bool sendAll; |
| 22 | final bool isParsedAddress; |
| 23 | final String? memo; |
| 24 | final Map<String, dynamic> extra; |
| 25 | } |