getValueForBigMapKey static method

dynamic getValueForBigMapKey(
  1. String server,
  2. String index,
  3. String key, {
  4. String? block,
  5. String? chainid,
})

Implementation

static getValueForBigMapKey(String server, String index, String key,
    {String? block, String? chainid}) async {
  return await HttpHelper.performGetRequest(
      server, 'chains/$chainid/blocks/$block/context/big_maps/$index/$key');
}