withEncryptionMetadata method
Future<DecryptedMessage>
withEncryptionMetadata(
- String sdkId,
- DecryptedMessage? base,
- Patient? patient,
- User? user,
- Map<
String, AccessLevel> delegates, - SecretIdUseOption secretId,
Implementation
Future<DecryptedMessage> withEncryptionMetadata(String sdkId, DecryptedMessage? base, Patient? patient, User? user, Map<String, AccessLevel> delegates, SecretIdUseOption secretId) async {
final res = await _methodChannel.invokeMethod<String>(
'MessageApi.withEncryptionMetadata',
{
"sdkId": sdkId,
"base": jsonEncode(base == null ? null : DecryptedMessage.encode(base!)),
"patient": jsonEncode(patient == null ? null : Patient.encode(patient!)),
"user": jsonEncode(user == null ? null : User.encode(user!)),
"delegates": jsonEncode(delegates.map((k0, v0) => MapEntry(k0, AccessLevel.encode(v0)))),
"secretId": jsonEncode(SecretIdUseOption.encode(secretId)),
}
);
if (res == null) throw AssertionError("received null result from platform method withEncryptionMetadata");
final parsedResJson = jsonDecode(res);
return DecryptedMessage.fromJSON(parsedResJson);
}