decrypt method
Decrypt binary to decrypted binary.
Implementation
@override
Future<Uint8List?> decrypt(
Uint8List buf,
Map<String, Uint8List> keys, {
Context? ctx,
}) async {
return await _h.invoke(this, _methods['decrypt']!, [buf, keys], ctx);
}