algod static method
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;
}