mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
20 lines
No EOL
477 B
Dart
20 lines
No EOL
477 B
Dart
class OutputInfo {
|
|
const OutputInfo(
|
|
{required this.address,
|
|
required this.sendAll,
|
|
required this.isParsedAddress,
|
|
this.cryptoAmount,
|
|
this.formattedCryptoAmount,
|
|
this.fiatAmount,
|
|
this.note,
|
|
this.extractedAddress,});
|
|
|
|
final String? fiatAmount;
|
|
final String? cryptoAmount;
|
|
final String address;
|
|
final String? note;
|
|
final String? extractedAddress;
|
|
final bool sendAll;
|
|
final bool isParsedAddress;
|
|
final int? formattedCryptoAmount;
|
|
} |