* Set the read status of the specified message. * * @param messageId - The message to set the read status of. * @param read - Whether the message is read.
(messageId: string, read: boolean)
| 439 | * @param read - Whether the message is read. |
| 440 | */ |
| 441 | static setReadForMessage(messageId: string, read: boolean): void { |
| 442 | IterableLogger.log('setReadForMessage: ', messageId, read); |
| 443 | return RNIterableAPI.setReadForMessage(messageId, read); |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * Pause or unpause the automatic display of incoming in-app messages |
nothing calls this directly
no test coverage detected