mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
14 lines
No EOL
261 B
Dart
14 lines
No EOL
261 B
Dart
class UnspentCoinsItem {
|
|
UnspentCoinsItem({
|
|
this.address,
|
|
this.amount,
|
|
this.isFrozen,
|
|
this.note,
|
|
this.isSending = true});
|
|
|
|
final String address;
|
|
final String amount;
|
|
final bool isFrozen;
|
|
final String note;
|
|
final bool isSending;
|
|
} |