Skip to content

Commit

Permalink
Update price_datasource.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
SepehrFakoori authored Jul 13, 2024
1 parent 7a0bf86 commit 9f303e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/data/datasource/price_datasource.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class PriceRemoteDatasource extends IPriceDataSource {
Future<List<Currency>> getCurrencies() async {
try {
Map<String, dynamic> qParams = {
"token": "440714:668d2eb4c7b96",
"token": "123456789",
"action": "tgju",
};
var response = await _dio.get("price/", queryParameters: qParams);
Expand All @@ -40,7 +40,7 @@ class PriceRemoteDatasource extends IPriceDataSource {
Future<List<Gold>> getGolds() async {
try {
Map<String, dynamic> qParams = {
"token": "440714:668d2eb4c7b96",
"token": "123456789",
"action": "tgju",
};
var response = await _dio.get("price/", queryParameters: qParams);
Expand All @@ -59,7 +59,7 @@ class PriceRemoteDatasource extends IPriceDataSource {
Future<List<Coin>> getCoins() async {
try {
Map<String, dynamic> qParams = {
"token": "440714:668d2eb4c7b96",
"token": "123456789",
"action": "tgju",
};
var response = await _dio.get("price/", queryParameters: qParams);
Expand Down

0 comments on commit 9f303e3

Please sign in to comment.