markReadInboxMessageForId static method

Future<void> markReadInboxMessageForId(
  1. String messageId
)

Marks the given messageId of CTInboxMessage object as read

Implementation

static Future<void> markReadInboxMessageForId(String messageId) async {
  return await _dartToNativeMethodChannel
      .invokeMethod('markReadInboxMessageForId', {'messageId': messageId});
}