decryptUint8List static method

ProtectResponse decryptUint8List(
  1. Uint8List data,
  2. String password
)

Decyrpts the Uint8List of the .xlsx file with the password.

Implementation

static ProtectResponse decryptUint8List(Uint8List data, String password) {
  return _decrypt(data, password);
}