User constructor

User(
  1. String name,
  2. SecurityLevel level, {
  3. AuthProtocol authProtocol = AuthProtocol.sha,
  4. String authKey = '',
  5. PrivProtocol privProtocol = PrivProtocol.des,
  6. String privKey = '',
})

A user credential for authenticating, encrypting, and decrypting SNMP v3 Messages

Implementation

User(
  this.name,
  this.level, {
  this.authProtocol = AuthProtocol.sha,
  this.authKey = '',
  this.privProtocol = PrivProtocol.des,
  this.privKey = '',
});