cake_wallet/cw_core/lib/output_info.dart

22 lines
514 B
Dart
Raw Normal View History

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,
this.memo});
2022-10-12 17:09:57 +00:00
final String? fiatAmount;
final String? cryptoAmount;
final String address;
2022-10-12 17:09:57 +00:00
final String? note;
final String? extractedAddress;
final bool sendAll;
final bool isParsedAddress;
2022-10-12 17:09:57 +00:00
final int? formattedCryptoAmount;
final String? memo;
}