kemApiV3NotificationsTokenPost method

Future<Response> kemApiV3NotificationsTokenPost({
  1. required RegisterNotificationV3Body? body,
})

Register the given notification token information so it is associated with the currently logged-in user.

If the device ID has been registered previously, it will be updated to reflect the new information.

Implementation

Future<chopper.Response> kemApiV3NotificationsTokenPost(
    {required RegisterNotificationV3Body? body}) {
  return _kemApiV3NotificationsTokenPost(body: body);
}