getInvoices method

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

Implementation

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