GetRandomValue method
Get a random value between min and max (both included)
Implementation
@override
int GetRandomValue(
num min,
num max,
) => run(
() => RaylibDebugLabels.GetRandomValue(min, max),
() => rl.Core.GetRandomValue(
min.toInt(),
max.toInt(),
),
);