delete Metadata
Removes message metadata by keys.
Deletes the specified keys from this message's metadata, with remote sync support.
message.removeMetadata(listOf("read_count", "liked")) { error ->
if (error == null) {
// Removed successfully
}
}Content copied to clipboard
Parameters
keys
List of metadata keys to remove
handler
Operation result callback; error is null on success