shuffleDots method

void shuffleDots()

find new positions for all dots

Implementation

void shuffleDots() {
  setState(() {
    positions.shuffle();
  });
}