Retrofit classes implemented with interceptor and base features

This commit is contained in:
2022-09-29 22:41:22 +01:00
parent d5a906d998
commit 057c6284ce
11 changed files with 53 additions and 18 deletions

View File

@@ -6,6 +6,7 @@ class Currency {
Currency(this.from, this.to, this.rate);
}
abstract class Mapper {
/// Mapper class to convert any object to [Currency]
abstract class CurrencyMapper {
Currency convert();
}