decrypt method

Future<Uint8List> decrypt(
  1. Uint8List encrypted, {
  2. BiometricPromptInfo? promptInfo,
})

Decrypt data using the private key (requires biometric authentication).

Implementation

Future<Uint8List> decrypt(
  Uint8List encrypted, {
  BiometricPromptInfo? promptInfo,
}) {
  throw UnimplementedError('decrypt() has not been implemented.');
}