VRRing constructor

VRRing({
  1. required Offset3D position,
  2. double ringRadius = 20,
  3. Color color = const Color(0xFF58A6FF),
  4. double strokeWidth = 1.5,
  5. bool visible = true,
})

Implementation

VRRing({
  required super.position,
  this.ringRadius = 20,
  this.color = const Color(0xFF58A6FF),
  this.strokeWidth = 1.5,
  super.visible,
});