first commit
This commit is contained in:
26
lib/Screens/Home/Repo/banner_repo.dart
Normal file
26
lib/Screens/Home/Repo/banner_repo.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
import 'dart:convert';
|
||||
|
||||
import 'package:http/http.dart' as http;
|
||||
|
||||
import '../../../Const/api_config.dart';
|
||||
import '../../../Repository/constant_functions.dart';
|
||||
import '../../../http_client/customer_http_client_get.dart';
|
||||
import '../Model/banner_model.dart';
|
||||
|
||||
class BannerRepo {
|
||||
Future<List<Banner>> fetchAllIBanners() async {
|
||||
CustomHttpClientGet clientGet = CustomHttpClientGet(client: http.Client());
|
||||
final uri = Uri.parse('${APIConfig.url}/banners');
|
||||
|
||||
final response = await clientGet.get(url: uri);
|
||||
if (response.statusCode == 200) {
|
||||
final parsedData = jsonDecode(response.body) as Map<String, dynamic>;
|
||||
|
||||
final partyList = parsedData['data'] as List<dynamic>;
|
||||
return partyList.map((user) => Banner.fromJson(user)).toList();
|
||||
// Parse into Party objects
|
||||
} else {
|
||||
throw Exception('Failed to fetch Users');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user