SelfDescribeEncoder constructor

SelfDescribeEncoder(
  1. Output _out
)

Implementation

SelfDescribeEncoder(this._out) : super(_out) {
  var valBuff = Uint8Buffer();
  var hList = Uint8List.fromList([0xd9, 0xd9, 0xf7]);
  valBuff.addAll(hList);
  addBuilderOutput(valBuff);
  // _builderHook = _hook;
}