markRead method
Marks the conversation as read for the current user at readAt.
Implementation
@override
Future<void> markRead(String conversationId, DateTime readAt) async {
await http.post(
'${config.baseUrl}/conversations/$conversationId/read',
body: jsonEncode({'readAt': readAt.toIso8601String()}),
headers: config.defaultHeaders,
);
}