15 lines
465 B
Dart
15 lines
465 B
Dart
import 'package:news/utils/api.dart';
|
|
import 'package:news/utils/strings.dart';
|
|
|
|
class NewsByIdRemoteDataSource {
|
|
Future<dynamic> getNewsById({required String newsId, required String langId}) async {
|
|
try {
|
|
final body = {LANGUAGE_ID: langId, ID: newsId};
|
|
final result = await Api.sendApiRequest(body: body, url: Api.getNewsApi);
|
|
return result;
|
|
} catch (e) {
|
|
throw ApiMessageAndCodeException(errorMessage: e.toString());
|
|
}
|
|
}
|
|
}
|