DartCodecBuffer constructor

DartCodecBuffer(
  1. int length
)

Constructs a DartCodecBuffer that is backed by a Uint8List with the provided length.

Implementation

DartCodecBuffer(int length)
    : _list = Uint8List(length),
      super(length);