responsesGetAroundSeen function

Future<Responses> responsesGetAroundSeen(
  1. ResponsesGetAroundSeen responsesGetAroundSeen
)

Implementation

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