deleteMessage method
- String messageId
Deletes a specific inbox message.
messageId
The unique identifier of the message to be deleted.
Returns a Future that completes when the deletion is finished.
Implementation
Future<void> deleteMessage(String messageId) async {
return await _module.channel
.invokeMethod('messageCenter#deleteMessage', messageId);
}