getInvoices method

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

Implementation

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