ArCoreSphere constructor

ArCoreSphere({
  1. double radius = 0.5,
  2. required List<ArCoreMaterial> materials,
})

Implementation

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