update method

Implementation

Future<MixinResponse<ConversationResponse>> update(
        String conversationId, ConversationRequest request) =>
    MixinResponse.request<ConversationResponse>(
      dio.post('/conversations/$conversationId', data: request),
      ConversationResponse.fromJson,
    );