getnotifications method

Future<NotificationListResponse> getnotifications(
  1. String kategori,
  2. String kategoridetay,
  3. int page
)

Implementation

Future<NotificationListResponse> getnotifications(
    String kategori, String kategoridetay, int page) async {
  NotificationListResponse jsonData =
      await service.notificationServices.getnotifications(
    kategori: kategori,
    kategoridetay: kategoridetay,
    page: page,
  );
  return jsonData;
}