Fix Casting issue

This commit is contained in:
OmarHatem 2022-11-18 20:32:52 +02:00
parent 549975ecc1
commit a82803de3a

View file

@ -180,7 +180,7 @@ abstract class SettingsViewModelBase with Store {
@action @action
void _showTrades() => actionlistDisplayMode.add(ActionListDisplayMode.trades); void _showTrades() => actionlistDisplayMode.add(ActionListDisplayMode.trades);
@action @action
Future<bool> biometricAuthenticated()async{ Future<bool> biometricAuthenticated()async{
return await _biometricAuth.canCheckBiometrics() && await _biometricAuth.isAuthenticated(); return await _biometricAuth.canCheckBiometrics() && await _biometricAuth.isAuthenticated();
} }
@ -195,8 +195,8 @@ abstract class SettingsViewModelBase with Store {
_settingsStore.currentTheme = newTheme; _settingsStore.currentTheme = newTheme;
} }
String getDisplayPriority(TransactionPriority priority) { String getDisplayPriority(dynamic priority) {
final _priority = priority; final _priority = priority as TransactionPriority;
if (_wallet.type == WalletType.bitcoin if (_wallet.type == WalletType.bitcoin
|| _wallet.type == WalletType.litecoin) { || _wallet.type == WalletType.litecoin) {