rotate method

Implementation

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