seen method

Future seen(
  1. String contactId
)

Implementation

Future seen(String contactId) async {
  await dio.put('/chat/seen/$contactId');
  session.profile.conversationsCount--;
}