GetRandomValue method

int GetRandomValue(
  1. num min,
  2. num max
)

Implementation

int GetRandomValue(
  num min,
  num max,
) => run(
  () => 'GetRandomValue($min, $max)',
  () => rl.Core.GetRandomValue(min.toInt(), max.toInt()),
);