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