postRequest method
Implementation
Future<dynamic> postRequest(String command, [Object? params]) => _client.send(
_handler.buildGeneralRequest(HttpMethod.httpPost, command, params),
(response) => _handler.parseGeneralResponse(
response,
(elementId) => getElement(elementId, this),
),
);