Ball constructor

Ball({
  1. required double angle,
  2. required int runs,
})

Implementation

Ball({
  required this.angle,
  required this.runs,
});