apiV1NotificationsListGet method
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);
}