getValue method

Future<String> getValue(
  1. String key, {
  2. BlockNum? atBlock,
})

Implementation

Future<String> getValue(String key, {BlockNum? atBlock}) async {
  final result = await read(self.function('getMetadataValue'), [
    key,
  ], atBlock);
  return result.single as String;
}