getInvoices method

Future<List<EncryptedInvoice>> getInvoices(
  1. List<String> entityIds
)

Implementation

Future<List<EncryptedInvoice>> getInvoices(List<String> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.invoice.encrypted.getInvoices(
		_sdkId,
		entityIds,
	);
}