cake_wallet/lib/view_model/unspent_coins/unspent_coins_item.dart
2022-10-12 13:09:57 -04:00

33 lines
No EOL
566 B
Dart

import 'package:mobx/mobx.dart';
part 'unspent_coins_item.g.dart';
class UnspentCoinsItem = UnspentCoinsItemBase with _$UnspentCoinsItem;
abstract class UnspentCoinsItemBase with Store {
UnspentCoinsItemBase({
required this.address,
required this.amount,
required this.hash,
required this.isFrozen,
required this.note,
required this.isSending});
@observable
String address;
@observable
String amount;
@observable
String hash;
@observable
bool isFrozen;
@observable
String note;
@observable
bool isSending;
}