request abstract method

Future<Map> request(
  1. JsonQuery query, {
  2. TransactionHeaders? headers,
  3. Transaction? transaction,
})

Sends a request to the engine.

  • query is the query to be sent to the engine.
  • headers are the headers to be sent with the request.
  • transaction is the transaction to be used for the request.

Implementation

Future<Map> request(
  JsonQuery query, {
  TransactionHeaders? headers,
  Transaction? transaction,
});