indexer static method
Proxies the requested path to the Indexer v2 API. Is limited to endpoints made available by the API server. The API backend may be configured by advanced users and is not guaranteed to respond as expected.
Implementation
static Future<Map<String, dynamic>> indexer({
required String ledger,
required String path,
}) async {
final result = await AlgoSignerPlatform.instance.indexer(
ledger: ledger,
path: path,
);
return result;
}