algod static method

Future<Map<String, dynamic>> algod({
  1. required String ledger,
  2. required String path,
  3. String? body,
  4. String? method,
  5. String? contentType,
})

Proxies the requested path to the Algod v2 API. Is limited to endpoints made available by the API server. By default, all calls to the AlgoSigner.algod method are GET.

Implementation

static Future<Map<String, dynamic>> algod({
  required String ledger,
  required String path,
  String? body,
  String? method,
  String? contentType,
}) async {
  final result = await AlgoSignerPlatform.instance.algod(
    ledger: ledger,
    path: path,
    body: body,
    method: method,
    contentType: contentType,
  );
  return result;
}