getConversation method

Implementation

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