mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-30 17:07:53 +00:00
14 lines
261 B
Dart
14 lines
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;
|
||
|
}
|