manifest method
The manifest method reports the current "manifest" information for a given validator public key. The "manifest" is the public portion of that validator's configured token.
Implementation
Future<Map<String, dynamic>> manifest(String publicKey) async {
final Map<String, dynamic> configParams = {};
_createRpcConfig(configParams, "public_key", publicKey);
final response =
await makeCustomCall<Map<String, dynamic>>("manifest", [configParams]);
return response;
}