getInvoice method

Future<EncryptedInvoice> getInvoice(
  1. String entityId
)

Implementation

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