CString.allocate constructor

CString.allocate(
  1. int size
)

Allocates a zero-initialized buffer of size bytes.

Implementation

CString.allocate(int size) : _data = Uint8List(size);