NativeBytesBuilder constructor

NativeBytesBuilder(
  1. int capacity
)

Implementation

NativeBytesBuilder(this.capacity) {
  ptr = malloc.allocate(capacity);
}