undeleteContactById method

Future<EncryptedContact> undeleteContactById(
  1. String id,
  2. String rev
)

Implementation

Future<EncryptedContact> undeleteContactById(String id, String rev) async {
	return await CardinalSdkPlatformInterface.instance.apis.contactBasic.undeleteContactById(
		_sdkId,
		id,
		rev,
	);
}