markAsDelivered static method
Sends mark as delivered to this channel when you received push message from us.
data
is the payload data from the push.
Implementation
static Future<void> markAsDelivered(
{required Map<String, dynamic> data}) async {
sbLog.i(StackTrace.current, 'data: $data');
await _instance._chat.markAsDelivered(data: data);
}