CString.allocate constructor
CString.allocate(
- int size
Allocates a zero-initialized buffer of size bytes.
Implementation
CString.allocate(int size) : _data = Uint8List(size);
Allocates a zero-initialized buffer of size bytes.
CString.allocate(int size) : _data = Uint8List(size);