SendPacket constructor

SendPacket({
  1. int clientSeq = 0,
  2. String clientMsgNO = "",
  3. String channelID = "",
  4. int channelType = 1,
  5. String? topic = "",
})

Implementation

SendPacket({
  this.clientSeq = 0,
  this.clientMsgNO = "",
  this.channelID = "",
  this.channelType = 1,
  this.topic = "",
}) {
  header.packetType = PacketType.send;
}