createRecoveryInfoForAvailableKeyPairs method

Future<RecoveryDataKey> createRecoveryInfoForAvailableKeyPairs({
  1. bool includeParentsKeys = false,
  2. int? lifetimeSeconds,
  3. RecoveryKeyOptions? recoveryKeyOptions,
})

Implementation

Future<RecoveryDataKey> createRecoveryInfoForAvailableKeyPairs({ bool includeParentsKeys = false, int? lifetimeSeconds, RecoveryKeyOptions? recoveryKeyOptions }) async {
	return await CardinalSdkPlatformInterface.instance.apis.recovery.createRecoveryInfoForAvailableKeyPairs(
		_sdkId,
		includeParentsKeys,
		lifetimeSeconds,
		recoveryKeyOptions,
	);
}