random property

int get random

Implementation

int get random {
  if (this == null) return 0;
  return Random().nextInt(this!);
}