sendParams method

SendList sendParams([
  1. AsyncReply<List?>? reply = null
])
Send data to the other end as parameters Values will be converted to bytes then sent.

Implementation

SendList sendParams([AsyncReply<List<dynamic>?>? reply = null]) {
  return new SendList(this, reply);
}