encryptUint8List static method

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

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

Implementation

static ProtectResponse encryptUint8List(Uint8List data, String password) {
  return _encrypt(data, password);
}