VertexT constructor

VertexT({
  1. required Vec3T position,
  2. required Vec3T normal,
  3. required Vec2T textureCoords,
  4. required ColorT color,
})

Implementation

VertexT({
  required this.position,
  required this.normal,
  required this.textureCoords,
  required this.color,
});