Current File : /home/tradevaly/public_html/fresh/lib/provider/notification_provider.dart |
import 'package:flutter/material.dart';
import 'package:flutter_grocery/data/model/response/base/api_response.dart';
import 'package:flutter_grocery/data/model/response/notification_model.dart';
import 'package:flutter_grocery/data/repository/notification_repo.dart';
import 'package:flutter_grocery/helper/api_checker.dart';
class NotificationProvider extends ChangeNotifier {
final NotificationRepo notificationRepo;
NotificationProvider({@required this.notificationRepo});
List<NotificationModel> _notificationList;
List<NotificationModel> get notificationList => _notificationList != null ? _notificationList.reversed.toList() : _notificationList;
Future<void> initNotificationList(BuildContext context) async {
ApiResponse apiResponse = await notificationRepo.getNotificationList();
if (apiResponse.response != null && apiResponse.response.statusCode == 200) {
_notificationList = [];
apiResponse.response.data.forEach((notificatioModel) => _notificationList.add(NotificationModel.fromJson(notificatioModel)));
} else {
ApiChecker.checkApi(context, apiResponse);
}
notifyListeners();
}
}