send method
void
send({})
Implementation
void send({
required String destination,
Map<String, String>? headers,
String? body,
Uint8List? binaryBody,
}) {
_transmit(
command: 'SEND',
body: body,
binaryBody: binaryBody,
headers: {
...?headers,
'destination': destination,
},
);
}