createExchangeDataRecoveryInfo method

Future<RecoveryDataKey> createExchangeDataRecoveryInfo(
  1. String delegateId, {
  2. int? lifetimeSeconds,
  3. RecoveryKeyOptions? recoveryKeyOptions,
})

Implementation

Future<RecoveryDataKey> createExchangeDataRecoveryInfo(String delegateId, { int? lifetimeSeconds, RecoveryKeyOptions? recoveryKeyOptions }) async {
	return await CardinalSdkPlatformInterface.instance.apis.recovery.createExchangeDataRecoveryInfo(
		_sdkId,
		delegateId,
		lifetimeSeconds,
		recoveryKeyOptions,
	);
}