decryptBytes static method

ProtectResponse decryptBytes(
  1. List<int> data,
  2. String password
)

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

Implementation

static ProtectResponse decryptBytes(List<int> data, String password) {
  return _decrypt(Uint8List.fromList(data), password);
}