OBPFrame.empty constructor
OBPFrame.empty({
- int version = VERSION,
- required OBPMessageType type,
- OBPFlags flags = OBPFlags.none,
- required int streamId,
Create frame with empty payload
Implementation
OBPFrame.empty({
this.version = VERSION,
required this.type,
this.flags = OBPFlags.none,
required this.streamId,
}) : payload = Uint8List(0);