updateConversation method

Future<MixinResponse<ConversationResponse>> updateConversation(
  1. String id
)

Implementation

Future<MixinResponse<ConversationResponse>> updateConversation(String id) =>
    MixinResponse.request<ConversationResponse>(
      dio.get('/conversations/$id'),
      ConversationResponse.fromJson,
    );