deleteContactsByIds method

Future<List<DocIdentifier>> deleteContactsByIds(
  1. List<IdWithMandatoryRev> entityIds
)

Implementation

Future<List<DocIdentifier>> deleteContactsByIds(List<IdWithMandatoryRev> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.contactBasic.deleteContactsByIds(
		_sdkId,
		entityIds,
	);
}