deleteHealthcarePartiesInGroupByIds method

Future<List<DocIdentifier>> deleteHealthcarePartiesInGroupByIds(
  1. String groupId,
  2. List<StoredDocumentIdentifier> entityIds
)

Implementation

Future<List<DocIdentifier>> deleteHealthcarePartiesInGroupByIds(String groupId, List<StoredDocumentIdentifier> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.healthcareParty.deleteHealthcarePartiesInGroupByIds(
		_sdkId,
		groupId,
		entityIds,
	);
}