responsesGet function

Future<Responses> responsesGet(
  1. ResponsesGet responsesGet
)

Implementation

Future<Responses> responsesGet(ResponsesGet responsesGet) async {
  String? response = await _clientPostRawResponse(PlurkEndpoints.responsesGet(),
      body: responsesGet.toBody());
  return compute(parseResponses, response);
}