purgeContact method
Implementation
Future<void> purgeContact(String sdkId, Contact contact) async {
	final res = await _methodChannel.invokeMethod<String>(
		'ContactApi.purgeContact',
		{
			"sdkId": sdkId,
			"contact": jsonEncode(Contact.encode(contact)),
		}
	).catchError(convertPlatformException);
}