getNext method

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

Requests the next (lexigraphical) Oid after the specified Oid

Implementation

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