2021-12-24 12:52:08 +00:00
|
|
|
class OutputInfo {
|
|
|
|
const OutputInfo(
|
2022-10-12 17:09:57 +00:00
|
|
|
{required this.address,
|
|
|
|
required this.sendAll,
|
|
|
|
required this.isParsedAddress,
|
|
|
|
this.cryptoAmount,
|
|
|
|
this.formattedCryptoAmount,
|
|
|
|
this.fiatAmount,
|
|
|
|
this.note,
|
|
|
|
this.extractedAddress,});
|
2021-12-24 12:52:08 +00:00
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
final String? fiatAmount;
|
|
|
|
final String? cryptoAmount;
|
2021-12-24 12:52:08 +00:00
|
|
|
final String address;
|
2022-10-12 17:09:57 +00:00
|
|
|
final String? note;
|
|
|
|
final String? extractedAddress;
|
2021-12-24 12:52:08 +00:00
|
|
|
final bool sendAll;
|
|
|
|
final bool isParsedAddress;
|
2022-10-12 17:09:57 +00:00
|
|
|
final int? formattedCryptoAmount;
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|