- Replaced API

- Updated available currencies
 - Updated unit tests
 - Fix for failure handling
 - Android release signing
This commit is contained in:
2023-02-13 18:09:51 +00:00
parent 87d601a62c
commit afaa93fb41
14 changed files with 122 additions and 322 deletions

View File

@@ -40,8 +40,8 @@ class MainViewModel extends BaseViewmodel {
(value) {
conversionRate = value.rate != null ? value.rate! : 0.00;
onSuccess(value);
}, onError: (exception, _) {
onError(exception.message);
}).catchError((e) {
onError(e.message);
});
}