send method

void send(
  1. int type,
  2. Uint8List? pld, {
  3. int? id,
})

Implementation

void send(int type, Uint8List? pld, {int? id}) {
  // Like query, but with no listener
  query(type, null, pld: pld, id: id);
}