kemApiV3NotificationsGet method

Future<Response<List<NotificationDTO>>> kemApiV3NotificationsGet({
  1. String? deviceId,
  2. int? offset,
  3. int? limit,
})

Get notification history data for the currently logged-in user. @param DeviceId Optional device ID. If provided, only notifications sent to the corresponding end-user device will be returned. If not provided, all notifications sent to any of the end-user's devices will be returned. @param Offset @param Limit

Implementation

Future<chopper.Response<List<NotificationDTO>>> kemApiV3NotificationsGet({
  String? deviceId,
  int? offset,
  int? limit,
}) {
  generatedMapping.putIfAbsent(
      NotificationDTO, () => NotificationDTO.fromJsonFactory);

  return _kemApiV3NotificationsGet(
      deviceId: deviceId, offset: offset, limit: limit);
}