StreamFrame constructor

StreamFrame({
  1. bool isFin = false,
  2. bool isSyn = false,
  3. required Uint8List data,
})

Implementation

StreamFrame({this.isFin = false, this.isSyn = false, required this.data}) : super(FrameType.stream);