getEncryptionKeysOf method

Future<Set<HexString>> getEncryptionKeysOf(
  1. String sdkId,
  2. GroupScoped<CalendarItem> calendarItem
)

Implementation

Future<Set<HexString>> getEncryptionKeysOf(String sdkId, GroupScoped<CalendarItem> calendarItem) async {
	final res = await _methodChannel.invokeMethod<String>(
		'CalendarItemApi.inGroup.getEncryptionKeysOf',
		{
			"sdkId": sdkId,
			"calendarItem": jsonEncode(GroupScoped.encode(
				calendarItem,
				(x0) {
					return CalendarItem.encode(x0);
				},
			)),
		}
	).catchError(convertPlatformException);
	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();
}