modifyInvoices method

Future<List<DecryptedInvoice>> modifyInvoices(
  1. List<DecryptedInvoice> entities
)

Implementation

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