iipReplyInvoke method

void iipReplyInvoke(
  1. int callbackId,
  2. DC result
)

Implementation

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

  Codec.parse(result, 0, this).then((rt) {
    req?.trigger(rt);
  });
}