sphere static method

dynamic sphere({
  1. double radius = 50,
  2. int divisions = 20,
})

Implementation

static sphere({double radius = 50, int divisions = 20}) =>
    _sphere(radius: radius, divisions: divisions);