bufferGetAttributesPtr method
Returns a pointer to buffer's per-cell packed attributes array.
Throws FFIException on a null result.
Implementation
Pointer<Uint8> bufferGetAttributesPtr(
Pointer<OptimizedBufferHandle> buffer,
) => _guard(
'Failed to get attributes pointer',
() => _checkNonNull(
'Failed to get attributes pointer',
_generated.bufferGetAttributesPtr(buffer.cast()),
),
);