getEncryptionKeysOf method

Future<Set<HexString>> getEncryptionKeysOf(
  1. String sdkId,
  2. Topic topic
)

Implementation

Future<Set<HexString>> getEncryptionKeysOf(String sdkId, Topic topic) async {
	final res = await _methodChannel.invokeMethod<String>(
		'TopicApi.getEncryptionKeysOf',
		{
			"sdkId": sdkId,
			"topic": jsonEncode(Topic.encode(topic)),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method getEncryptionKeysOf");
	final parsedResJson = jsonDecode(res);
	return (parsedResJson as List<dynamic>).map((x1) => (x1 as HexString) ).toSet();
}