ProtocolMessage constructor

ProtocolMessage({
  1. required int seq,
  2. required String type,
})

Implementation

ProtocolMessage({
  required this.seq,
  required this.type,
});