VertexAttributeDescriptor constructor

const VertexAttributeDescriptor({
  1. required String name,
  2. required VertexFormat format,
  3. int offsetInBytes = 0,
})

Implementation

const VertexAttributeDescriptor({
  required this.name,
  required this.format,
  this.offsetInBytes = 0,
});