mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
22 lines
No EOL
496 B
Dart
22 lines
No EOL
496 B
Dart
import 'package:cw_core/transaction_direction.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;
|
|
|
|
Map<String, dynamic> additionalInfo;
|
|
} |