iipReplyInvoke method

void iipReplyInvoke(
  1. int callbackId,
  2. TransmissionType dataType,
  3. DC data
)

Implementation

void iipReplyInvoke(int callbackId, TransmissionType dataType, DC data) {
  var req = _requests.take(callbackId);

  Codec.parse(data, 0, this, null, dataType).reply.then((rt) {
    req?.trigger(rt);
  });
}