mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-02-05 04:36:31 +00:00
27 lines
537 B
Dart
27 lines
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();
|
||
|
}
|
||
|
|
||
|
}
|