markAsDelivered method

Future<void> markAsDelivered({
  1. required Map<String, dynamic> data,
})

Marks the messages as delivered with the specified data.

data : The data for marking the messages as delivered.

Implementation

Future<void> markAsDelivered({required Map<String, dynamic> data}) async {
  await SendbirdChat.markAsDelivered(data: data);
}