RawAccessor constructor

RawAccessor({
  1. required GltfRoot root,
  2. required GltfRef<BufferView> bufferView,
  3. required int byteOffset,
  4. required ComponentType componentType,
  5. required bool normalized,
  6. required int count,
  7. required AccessorType type,
  8. required List<double>? max,
  9. required List<double>? min,
  10. required SparseAccessor? sparse,
})

Implementation

RawAccessor({
  required super.root,
  required this.bufferView,
  required this.byteOffset,
  required this.componentType,
  required this.normalized,
  required this.count,
  required this.type,
  required this.max,
  required this.min,
  required this.sparse,
});