decrypt method

Future<Uint8List> decrypt(
  1. Uint8List bytes
)

Implementation

Future<Uint8List> decrypt(final Uint8List bytes) async {
  ArgumentError.checkNotNull(bytes);

  return await _platform.invokeMethod("aesDecrypt", createAESArguments(bytes));
}