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