getColor function

Color getColor()

Implementation

Color getColor() => Color.fromARGB(
      _rand.nextInt(200),
      _rand.nextInt(255),
      _rand.nextInt(255),
      _rand.nextInt(255),
    );