kemApiV3InternalNotificationsPost method

Future<Response> kemApiV3InternalNotificationsPost({
  1. required NotificationInsertV3Body? body,
})

Insert a notification entry into the database

This is intended to be used by the existing OnCue system to insert notifications into the old Notifications table.

Implementation

Future<chopper.Response> kemApiV3InternalNotificationsPost(
    {required NotificationInsertV3Body? body}) {
  return _kemApiV3InternalNotificationsPost(body: body);
}