ArCoreCylinder constructor

ArCoreCylinder({
  1. double radius = 0.5,
  2. double height = 1.0,
  3. required List<ArCoreMaterial> materials,
})

Implementation

ArCoreCylinder({
  this.radius = 0.5,
  this.height = 1.0,
  required List<ArCoreMaterial> materials,
}) : super(
        materials: materials,
      );