listInvoicesByContactIds method

Future<List<DecryptedInvoice>> listInvoicesByContactIds(
  1. List<String> contactIds
)

Implementation

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