randomChoiceBottomHalf property

dynamic get randomChoiceBottomHalf

returns a number from the set that is in the bottom half

Implementation

dynamic get randomChoiceBottomHalf {
  final List<dynamic> x = toList();
  x.sort();
  return x[math.Random().nextInt(length ~/ 2)];
}