set method

BufferAttribute<NativeArray<num>> set(
  1. dynamic value, {
  2. int offset = 0,
})

Implementation

BufferAttribute set(value, {int offset = 0}) {
  array[offset] = value;

  return this;
}