markAsDelivered static method

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

Sends mark as delivered to this channel when you received push message from us. data is the payload data from the push. Delivery receipt is a premium feature.

Implementation

static Future<void> markAsDelivered(
    {required Map<String, dynamic> data}) async {
  sbLog.i(StackTrace.current, 'data: $data');
  await _instance._chat.markAsDelivered(data: data);
}