hasKey method

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

Implementation

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