Please tell me if it is possible to somehow make setting badge and sending with chunks. Or need send each notification independently because the badge must be calculated individually for each user
for chunk in chunks_without_sound_notification:
result = push_service.notify_multiple_devices(
registration_ids=chunk,
message_title=title,
message_body=body,
data_message=data,
sound=False,
badge=3
)
Please tell me if it is possible to somehow make setting badge and sending with chunks. Or need send each notification independently because the badge must be calculated individually for each user