mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 20:19:25 +00:00
21 lines
502 B
Dart
21 lines
502 B
Dart
|
import 'package:cw_core/transaction_direction.dart';
|
||
|
import 'package:cake_wallet/utils/mobx.dart';
|
||
|
import 'package:cw_core/keyable.dart';
|
||
|
|
||
|
abstract class TransactionInfo extends Object with Keyable {
|
||
|
String id;
|
||
|
int amount;
|
||
|
int fee;
|
||
|
TransactionDirection direction;
|
||
|
bool isPending;
|
||
|
DateTime date;
|
||
|
int height;
|
||
|
int confirmations;
|
||
|
String amountFormatted();
|
||
|
String fiatAmount();
|
||
|
String feeFormatted();
|
||
|
void changeFiatAmount(String amount);
|
||
|
|
||
|
@override
|
||
|
dynamic get keyIndex => id;
|
||
|
}
|