Sphere.gesture constructor

const Sphere.gesture({
  1. Key? key,
  2. required List<Widget> children,
  3. required double size,
  4. bool alphaEnabled = true,
})

Implementation

const Sphere.gesture({
  super.key,
  required this.children,
  required this.size,
  this.alphaEnabled = true,
}) : rotationX = 0,
     rotationY = 0,
     isGesture = true,
     isRotate = false;