sendReply method

SendList sendReply(
  1. int action,
  2. int callbackId
)

Implementation

SendList sendReply(int action, int callbackId) {
  return (sendParams()
    ..addUint8((0x80 | action))
    ..addUint32(callbackId));
}