BytesBuffer constructor

BytesBuffer({
  1. bool copy = false,
})

Implementation

BytesBuffer({bool copy = false})
    : _chunks = <Uint8List>[],
      _copy = copy;