read method
To read Conversation.lastMessage in the Conversation.
Implementation
Future<void> read() async {
var args = {
'clientId': client.id,
'conversationId': id,
};
await call(
method: 'readMessage',
arguments: args,
);
}