addReqParams method

void addReqParams(
  1. Map m
)

Adds request parameters to the send list.

This method adds the request ID and parameters to the send list of the requester to be sent later.

Implementation

void addReqParams(Map m) {
  requester.addToSendList(<String, dynamic>{'rid': rid, 'params': m});
}