mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
46 lines
1.2 KiB
Dart
46 lines
1.2 KiB
Dart
import 'package:decimal/decimal.dart';
|
|
import 'package:stackwallet/utilities/logger.dart';
|
|
|
|
class Estimate {
|
|
final Decimal estimatedAmount;
|
|
final bool fixedRate;
|
|
final bool reversed;
|
|
final String? warningMessage;
|
|
final String? rateId;
|
|
|
|
Estimate({
|
|
required this.estimatedAmount,
|
|
required this.fixedRate,
|
|
required this.reversed,
|
|
this.warningMessage,
|
|
this.rateId,
|
|
});
|
|
|
|
factory Estimate.fromMap(Map<String, dynamic> map) {
|
|
try {
|
|
return Estimate(
|
|
estimatedAmount: Decimal.parse(map["estimatedAmount"] as String),
|
|
fixedRate: map["fixedRate"] as bool,
|
|
reversed: map["reversed"] as bool,
|
|
warningMessage: map["warningMessage"] as String?,
|
|
rateId: map["rateId"] as String?,
|
|
);
|
|
} catch (e, s) {
|
|
Logging.instance.log("Estimate.fromMap(): $e\n$s", level: LogLevel.Error);
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
Map<String, dynamic> toMap() {
|
|
return {
|
|
"estimatedAmount": estimatedAmount.toString(),
|
|
"fixedRate": fixedRate,
|
|
"reversed": reversed,
|
|
"warningMessage": warningMessage,
|
|
"rateId": rateId,
|
|
};
|
|
}
|
|
|
|
@override
|
|
String toString() => "Estimate: ${toMap()}";
|
|
}
|