ack static method

AtRpcResp ack({
  1. required AtRpcReq request,
})

factory which makes an AtRpcResp with AtRpcRespType.ack and no payload

Implementation

static AtRpcResp ack({required AtRpcReq request}) {
  return AtRpcResp(
      reqId: request.reqId, respType: AtRpcRespType.ack, payload: {});
}