apiV1NotificationsListGet method

Future<Response<NotificationListResponse>> apiV1NotificationsListGet({
  1. int? limit,
  2. int? beforeId,
})

Fetch list of notifications for the curreent user @param limit @param beforeId

Implementation

Future<chopper.Response<NotificationListResponse>> apiV1NotificationsListGet({
  int? limit,
  int? beforeId,
}) {
  generatedMapping.putIfAbsent(NotificationListResponse,
      () => NotificationListResponse.fromJsonFactory);

  return _apiV1NotificationsListGet(limit: limit, beforeId: beforeId);
}