get method

Future<Message> get(
  1. Oid oid, {
  2. InternetAddress? target,
  3. int? port,
})

Sends an SNMPGET request to the specified Oid

Implementation

Future<Message> get(Oid oid, {InternetAddress? target, int? port}) =>
    _get(oid, PduType.GetRequest, target: target, port: port);