deleteTimeTablesByIds method

Future<List<DocIdentifier>> deleteTimeTablesByIds(
  1. List<StoredDocumentIdentifier> entityIds
)

Implementation

Future<List<DocIdentifier>> deleteTimeTablesByIds(List<StoredDocumentIdentifier> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.timeTable.deleteTimeTablesByIds(
		_sdkId,
		entityIds,
	);
}