getRequest method

Future getRequest(
  1. String command
)

Implementation

Future<dynamic> getRequest(String command) => _client.send(
    _handler.buildGeneralRequest(HttpMethod.httpGet, command),
    (response) => _handler.parseGeneralResponse(
        response, (elementId) => getElement(elementId, this)));