BallStyle constructor

const BallStyle({
  1. double size = 10.0,
  2. Color color = Colors.white,
  3. BallType ballType = BallType.solid,
  4. double borderWidth = 0.0,
  5. Color borderColor = Colors.white,
})

Implementation

const BallStyle(
    {this.size = 10.0,
    this.color = Colors.white,
    this.ballType = BallType.solid,
    this.borderWidth = 0.0,
    this.borderColor = Colors.white});