$allocate static method
- Allocator $allocator, {
- required Pointer<
ShapeArray> array, - required int size,
- required int mask,
Implementation
static ffi.Pointer<ShapeHash> $allocate(
ffi.Allocator $allocator, {
required ffi.Pointer<ShapeArray> array,
required int size,
required int mask,
}) => $allocator<ShapeHash>()
..ref.array = array
..ref.size = size
..ref.mask = mask;