ProtectionOptions constructor

ProtectionOptions({
  1. required String password,
  2. String? ownerPassword,
  3. String encryptionLevel = '256',
  4. PermissionOptions permissions = const PermissionOptions(),
})

Constructor

Implementation

ProtectionOptions({
  required this.password,
  this.ownerPassword,
  this.encryptionLevel = '256',
  this.permissions = const PermissionOptions(),
});