decrypt method

Future<Uint8List> decrypt(
  1. Uint8List encrypted
)

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

Implementation

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