Sphere constructor

Sphere([
  1. Vector3? center,
  2. double? radius
])

Implementation

Sphere([Vector3? center, double? radius]) {
  this.center = center ?? Vector3.init();
  this.radius = radius ?? -1;
}