getEncryptionKeysOf method
Implementation
Future<Set<HexString>> getEncryptionKeysOf(String sdkId, TimeTable timeTable) async {
final res = await _methodChannel.invokeMethod<String>(
'TimeTableApi.getEncryptionKeysOf',
{
"sdkId": sdkId,
"timeTable": jsonEncode(TimeTable.encode(timeTable)),
}
);
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();
}