deleteRequest method

Future deleteRequest(
  1. String command
)

Implementation

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