mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-27 04:56:02 +00:00
27 lines
No EOL
537 B
Dart
27 lines
No EOL
537 B
Dart
import 'package:cw_core/transaction_info.dart';
|
|
|
|
class DummyTransactionInfo extends TransactionInfo {
|
|
@override
|
|
String amountFormatted() {
|
|
// TODO: implement amountFormatted
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
@override
|
|
void changeFiatAmount(String amount) {
|
|
// TODO: implement changeFiatAmount
|
|
}
|
|
|
|
@override
|
|
String? feeFormatted() {
|
|
// TODO: implement feeFormatted
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
@override
|
|
String fiatAmount() {
|
|
// TODO: implement fiatAmount
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
} |