poll abstract method

  1. @POST('/longpolling/poll')
Future<RpcResponse<List<PollResult>>> poll(
  1. @Body() RpcPayload<PollParams> payload
)

Implementation

@POST('/longpolling/poll')
Future<RpcResponse<List<PollResult>>> poll(
  @Body() RpcPayload<PollParams> payload,
);