undeleteContact method

Future<EncryptedContact> undeleteContact(
  1. String sdkId,
  2. Contact contact
)

Implementation

Future<EncryptedContact> undeleteContact(String sdkId, Contact contact) async {
	final res = await _methodChannel.invokeMethod<String>(
		'ContactBasicApi.undeleteContact',
		{
			"sdkId": sdkId,
			"contact": jsonEncode(Contact.encode(contact)),
		}
	);
	if (res == null) throw AssertionError("received null result from platform method undeleteContact");
	final parsedResJson = jsonDecode(res);
	return EncryptedContact.fromJSON(parsedResJson);
}