write method
Writes data to the connection.
Implementation
@override
Future<void> write(Uint8List data) async {
// For negotiation purposes, write to the initial stream.
_logger.fine('[UDXSessionConn $id] write() delegating to initialP2PStream.write() data length: ${data.length}');
return initialP2PStream.write(data);
}