DC constructor

DC(
  1. int length
)

Implementation

DC(int length) {
  _data = new Uint8List(length);
  _dv = ByteData.view(_data.buffer);
}